diff options
| author | Maria José Solano <majosolano99@gmail.com> | 2024-10-15 02:36:04 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-15 02:36:04 -0700 |
| commit | e0a5c3bb581752569df4490b48cb54e7c1ab0613 (patch) | |
| tree | 97e6936d443d2cb7f4da14a04a285ac16034f1dd /runtime/doc | |
| parent | 74a161477266b3c131076ac572c5d4b577593ec4 (diff) | |
| download | rneovim-e0a5c3bb581752569df4490b48cb54e7c1ab0613.tar.gz rneovim-e0a5c3bb581752569df4490b48cb54e7c1ab0613.tar.bz2 rneovim-e0a5c3bb581752569df4490b48cb54e7c1ab0613.zip | |
fix(lsp): handle multiline signature help labels #30460
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/lsp.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index addc093a3e..91338f7d3f 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -1855,7 +1855,7 @@ signature_help({_}, {result}, {ctx}, {config}) < Parameters: ~ - • {result} (`lsp.SignatureHelp`) Response from the language server + • {result} (`lsp.SignatureHelp?`) Response from the language server • {ctx} (`lsp.HandlerContext`) Client context • {config} (`table`) Configuration table. • border: (default=nil) @@ -1973,7 +1973,7 @@ convert_signature_help_to_markdown_lines({signature_help}, {ft}, {triggers}) Return (multiple): ~ (`string[]?`) table list of lines of converted markdown. - (`number[]?`) table of active hl + (`Range4?`) table of active hl See also: ~ • https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocument_signatureHelp |