Rum

Results 5 comments of Rum

``` let g:LanguageClient_serverCommands = { \ 'python':['pyls'], \ 'ruby': ['solargraph','stdio'] \ } ``` The autocompletion also doesn't work in my environment.But it seems like that the "Jump to def" can...

It also occurs after deleting file if the file has been open in vim.

https://github.com/ncm2/ncm2

I also encountered the same troublesome problem.

@ipatch I'm using deoplete-ternjs to substitute for the language server's autocompletion. ``` call deoplete#custom#option('ignore_sources', {'python': ['LanguageClient'], \'javascript':['LanguageClient'],'javascript.jsx':['LanguageClient'],'typescript':['LanguageClient'], \'cpp':['LanguageClient'],'c':['LanguageClient'] \ }) " disable LC ``` It works well.But I also use...