Baidu
Baidu
New function `LanguageClient#debugInfo` to print out debug info. https://github.com/autozimu/LanguageClient-neovim/blob/542203b6aa435b93a21e123b2177b18cd1a1a8ed/doc/LanguageClient.txt#L567-L570
`rustDocument/implementations` was removed #655. > `rustDocument/implementations` was removed from rls back in July - at [this commit](https://github.com/rust-lang-nursery/rls/commit/addb8b52). It now uses the standard `textDocument/implementation`.
Event `LanguageClientBufReadPost` was renamed to `LanguageClientTextDocumentDidOpenPost` to make it more accurate. @https://github.com/autozimu/LanguageClient-neovim/commit/810aebe9a4824cf7c22b0208322cddd398d9ca3d
Heuristic snippet support is updated so that only neosnippet is equal to true, https://github.com/autozimu/LanguageClient-neovim/commit/657ad707d8732fc5a2139224cb00132880455904 For details, see https://github.com/autozimu/LanguageClient-neovim/issues/379 and https://github.com/autozimu/LanguageClient-neovim/issues/396
Neovim virtual text is supported. Of course with option to turn it off if you'd like https://github.com/autozimu/LanguageClient-neovim/blob/273e5dc44cf1f860e40999ee47ad9cb214ffd94c/doc/LanguageClient.txt#L343-L348 To customize the highlight group to use for virtual text, https://github.com/autozimu/LanguageClient-neovim/blob/273e5dc44cf1f860e40999ee47ad9cb214ffd94c/doc/LanguageClient.txt#L103
Hover content will be displayed in a floating window whenever possible (implemented in neovim 0.4.0). Thanks to @rhysd. Call hover twice to switch into the floating window. If you want...
Release [0.1.156](https://github.com/autozimu/LanguageClient-neovim/releases/tag/0.1.156) contains breaking changes regarding setting `g:LanguageClient_useVirtualText`. Valid options are updated from boolean value to enum. Checkout corresponding documentation if you're affected, https://github.com/autozimu/LanguageClient-neovim/blob/fb02afed15363c8879277b413b89e6ca51589e6a/doc/LanguageClient.txt#L343-L348
I was informed that jedi-vim integrates signature help with completion menu. Haven't got time to look into it and don't know how much work it would require. Actually I made...
Would specify different lists for neomake and LC work? Say, configure neomake to use quickfix and LC to use location list.
That's possible useful cases. There're also interesting open questions if this is made possible, 1. How many languages have more than one mature language servers? 1. If there is more...