Code Monkey home page Code Monkey logo

Comments (7)

prabirshrestha avatar prabirshrestha commented on July 19, 2024 1

Buffer algorithm is definitely not so good as I would like it to be. If anyone has a better algorithm let me know.

If you have python enabled vim we could also support starting a thread and letting it do much of the computations so vim remains responsive.

from asyncomplete-buffer.vim.

niklaas avatar niklaas commented on July 19, 2024

Same here.

Is it possible to exclude certain buffers as references for completion?

I thought about blacklist when registering with asyncomplete#register_source but as far as I understand this is for deactivating all buffer sources for specific filetypes.

from asyncomplete-buffer.vim.

niklaas avatar niklaas commented on July 19, 2024

Thanks for your response. I finally decided against buffers as completion source. Apart from long response times, the suggestions by buffers cluttered the completion dialog a lot. I have a much better experience with vim-lsp only.

from asyncomplete-buffer.vim.

Holzhaus avatar Holzhaus commented on July 19, 2024

I think we should go for the python solution then.

from asyncomplete-buffer.vim.

jsit avatar jsit commented on July 19, 2024

This is because the TextChangedI causes the buffer source to refresh waaayyyy too often. After #4 is merged, you can override the events in your source registration in .vimrc with something like this:

au User asyncomplete_setup call asyncomplete#register_source(asyncomplete#sources#buffer#get_source_options({
	\ 'name': 'buffer',
	\ 'whitelist': ['*'],
	\ 'blacklist': ['go'],
	\ 'events': ['TextChanged','InsertLeave','BufWinEnter','BufWritePost'],
	\ 'completor': function('asyncomplete#sources#buffer#completor'),
	\ }))

#1 could be solved by this, as well.

from asyncomplete-buffer.vim.

 avatar commented on July 19, 2024

It's perfect now, but I have to explicitly enable let g:asyncomplete_buffer_clear_cache = 1 in vimrc. Cheers! Thanks.

from asyncomplete-buffer.vim.

jsit avatar jsit commented on July 19, 2024

@tuyenpm9 It defaults to 1

from asyncomplete-buffer.vim.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.