Hi!
Ycm is in c, right? So is it faster?
Yes. It is not always faster though.
Deoplete is python?
Yes.
What snippet should I use with deoplete? Neosnippet? How is it compared to utilsnips?
neosnippet is better.
https://github.com/Shougo/neosnippet.vim/issues/365
Is deoplete more like for windows or ubuntu?
In Ubuntu is tested well. In Windows is experimental and slower.
What languages is deoplete made for specially? Could It handle c language better that ycm?
Python and Go support is very well.
C language completion is better in YouCompleteMe.
You can test deoplete-clang or deoplete-clang2 though.
Or you can create it!
What is limit of lines that deoplete works efficiently?
Below 10000 lines are recommended.
What are general pros and cons of deoplete over ycm?
Pros:
Cons.
Is it possible to use both plugins but use them for different languages?
For example, use deoplete with vim-go and gopls for golang but use YCM for c based languages.
You can disable deoplete in specific languages like this:
autocmd FileType c,cpp
\ call deoplete#custom#buffer_option('auto_complete', v:false)
Thank you. Between that and simply not building golang support for ycm
achieves what I'm looking for.
On Wed, Apr 24, 2019, 5:12 PM Shougo notifications@github.com wrote:
You can disable deoplete in specific languages like this:
autocmd FileType c,cpp\ call deoplete#custom#buffer_option('auto_complete', v:false)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/Shougo/deoplete.nvim/issues/606#issuecomment-486482497,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ABOZO4HDF2ZNDIPJFNNIFGDPSEAOXANCNFSM4ELR5FEA
.
I don't know about YCM side's configuration.
Most helpful comment
Pros:
Cons.