@@ -63,13 +63,6 @@ accessed by regular quickfix/location list operations.
63
63
To use the language server with Vim's formatting operator | gq | , set 'formatexpr' : >
64
64
set formatexpr=LanguageClient#textDocument_rangeFormatting_sync()
65
65
<
66
- If you're using Neovim 0.4.0 or later, | LanguageClient#textDocument_hover() |
67
- opens documentation in a floating window. The window is automatically closed
68
- when you move the cursor. Or calling | LanguageClient#textDocument_hover() |
69
- again just after opening the floating window moves the cursor into the window.
70
- It is useful when documentation is longer and you need to scroll down or you
71
- want to yank some text in the documentation.
72
-
73
66
==============================================================================
74
67
2. Configuration *LanguageClientConfiguration*
75
68
@@ -413,6 +406,12 @@ Signature: LanguageClient#textDocument_hover(...)
413
406
414
407
Show type info (and short doc) of identifier under cursor.
415
408
409
+ If you're using Neovim 0.4.0 or later, this function opens documentation in a
410
+ floating window. The window is automatically closed when you move the cursor.
411
+ Or calling this function again just after opening the floating window moves
412
+ the cursor into the window. It is useful when documentation is longer and you
413
+ need to scroll down or you want to yank some text in the documentation.
414
+
416
415
*LanguageClient#textDocument_definition()*
417
416
*LanguageClient_textDocument_definition()*
418
417
Signature: LanguageClient#textDocument_definition(...)
0 commit comments