LanguageClient-neovim icon indicating copy to clipboard operation
LanguageClient-neovim copied to clipboard

Language Server Protocol (LSP) support for vim and neovim.

Results 111 LanguageClient-neovim issues
Sort by recently updated
recently updated
newest added

- Did you upgrade to latest plugin version? yes - Did you upgrade to/compile latest binary? languageclient 0.1.160 - (Neovim users only) Did you check output of `:checkhealth LanguageClient`? yes...

## Describe the solution you'd like The ability to have `:w` run a "fixer" before hand. ## Describe alternatives you've considered If using using this project to replace ALE I...

This PR adds a config option for `format on save`. I'm a little concerned about the async nature of this, so I think it needs a very thorough test ride...

If I have an error like, > [Error] [E0624] associated function `get_as_store` is private private associated function caused by, let alerts = client.get_as_store().await.expect("Got JSON"); And then I go to the...

`:LanguageClientInstallBinaries` makes it easy to download or refresh `languageclient`. This is my first time writing `vimscript` and I just wrapped provided `install.sh`.

When working with larger multiple plaintext outputs, enclosing each output in ``` hinders readability. ![image](https://user-images.githubusercontent.com/6503361/112186831-cdc49300-8c01-11eb-8407-e2d3df45db7f.png) versus ![image](https://user-images.githubusercontent.com/6503361/112188241-1df02500-8c03-11eb-88c1-b20c3dd1a63f.png) As far as I am aware, the only "fake" language in this way...

## Is your feature request related to a problem? Please describe. After reading the docs, I couldn't seem to find a way to edit the entries in the context menu....

## Is your feature request related to a problem? Please describe. clangd and rust-analyzer (and maybe others) have semantic highlighting, would be nice if it worked out of the box....

More information: dart-lang/sdk#36464 natebosch/vim-lsc#164 tomv564/LSP#550 I use the follow config ``` let g:LanguageClient_serverCommands = { \ 'python' :["pyls"], \ 'rust': ['rustup', 'run', 'stable', 'rls'], \ 'dart': ['$DART_SDK/dart', "$DART_SDK/snapshots/analysis_server.dart.snapshot", "--lsp"], \...