autozimu / LanguageClient-neovim

Language Server Protocol (LSP) support for vim and neovim.
MIT License
3.55k stars 272 forks source link

How can I cancel completion item documentation? #1183

Closed ta3pks closed 3 years ago

ta3pks commented 3 years ago

How can I cancel completion item documentation?

martskins commented 3 years ago

If by cancel you mean hide them, not show them at all, then you can do that by adding this to your vimrc:

let g:LanguageClient_showCompletionDocs = 0

Note that this is documented in doc/LanguageClient.txt

ta3pks commented 3 years ago

thanks I searched the docs but couldnt find initially