rox
rox
> Doesn't `LanguageClient_registerServerCommands()` create it? It does. But the code is executed in `ftplugin/php.vim`, which may not be executed before `autocmd FileType * call LC_maps()`. Read `:help ftplugin` for more...
Hmm... Perhaps @autozimu has some advice.
LanguageClient-neovim and neomake both modifies the signs. I'm not familiar with the feature. But probably you need to disable one of them. `:help g:LanguageClient_diagnosticsEnable` // cc @autozimu
I cannot reproduce the issue you describe, though. Is there a minimal vimrc I can start with?
Add reference to https://github.com/autozimu/LanguageClient-neovim/issues/149
I don't think re-spawning a subprocess every time is the bottle-neck, though. It may be slower, but it shouldn't make it being 5 second vs 1 second.
FYI, I have updated the README, since ALE is taking too much CPU resource ```vim " (optional, for completion performance) run linters only when I save files let g:ale_lint_on_text_changed =...
copied from https://github.com/roxma/clang_complete/issues/1 After some more test, I noticed that the completion gets really fast after caching the TU and an extra explicit reparse. I don't know why it needs...
https://github.com/ncm2/ncm2-pyclang deprecates this repo
I have a `.cpp` file that includes the bloated boost and opencv headers, With `libclang.so`, it takke about 0.2s after the TU is cached and reparsed. With `clang` binary, it...