Giter VIP home page Giter VIP logo

Comments (4)

roxma avatar roxma commented on June 14, 2024

You can use any language, python3 is more preferable for this framework currently.

use the same protocol as autoload/cm/sources/ultisnips.vim cm#sources#ultisnips#cm_refresh function did.

If the completion calculation takes a while, you should call cm#complete later, through your own async channel, instead of in the same refresh handler function. Otherwise it will block the ui, since vimscript is single threaded.

The framework will handle synchronization properly.

from nvim-completion-manager.

roxma avatar roxma commented on June 14, 2024

This is the registering code in pure vimscript:

au User CmSetup call cm#register_source({'name' : 'cm-ultisnips',
        \ 'priority': 7,  
        \ 'abbreviation': 'Snip',
        \ 'cm_refresh_patterns':['\S{1,}$'],
        \ 'cm_refresh': 'cm#sources#ultisnips#cm_refresh',
        \ })

" css
" the omnifunc pattern is PCRE
au User CmSetup call cm#register_source({'name' : 'cm-css',
        \ 'priority': 9,  
        \ 'scopes': ['css','scss'],
        \ 'abbreviation': 'css',
        \ 'cm_refresh_patterns':['\w{2,}$',':\s+\w*$'],
        \ 'cm_refresh': {'omnifunc': 'csscomplete#CompleteCSS'},
        \ })

from nvim-completion-manager.

roxma avatar roxma commented on June 14, 2024

I'll update the documentation for this, ask any question if you get confused.

from nvim-completion-manager.

prabirshrestha avatar prabirshrestha commented on June 14, 2024

Here is an example using asyncomplete that is written in vim script that uses job.

https://github.com/prabirshrestha/asyncomplete-tscompletejob.vim/blob/5eedc54022ffdc44fc1f4e7e13271ec19513a3a0/autoload/asyncomplete/sources/tscompletejob.vim
https://github.com/prabirshrestha/asyncomplete-gocode.vim/blob/93161392b82b42e36a78cdebdab32a9ea050fdff/autoload/asyncomplete/sources/gocode.vim

Since asyncomplete is fork of nvim-completion-manager you should be able to do the same. But as roxma mentioned vim script is single thread so you could still be blocked. I have been using the typescript asyncomplete job for a large codebase at work for at least a week and haven't noticed any lag.

from nvim-completion-manager.

Related Issues (20)

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.