diff options
| author | Lewis Russell <lewis6991@gmail.com> | 2024-11-01 12:30:36 +0000 |
|---|---|---|
| committer | Lewis Russell <me@lewisr.dev> | 2024-11-04 11:55:39 +0000 |
| commit | 6e68fed37441096bf9fd2aa27b9bf6e7d7eae550 (patch) | |
| tree | c6255b3480683658213642f3e570682051e3b8a6 /runtime/doc | |
| parent | 0da4d89558a05fb86186253e778510cfd859caea (diff) | |
| download | rneovim-6e68fed37441096bf9fd2aa27b9bf6e7d7eae550.tar.gz rneovim-6e68fed37441096bf9fd2aa27b9bf6e7d7eae550.tar.bz2 rneovim-6e68fed37441096bf9fd2aa27b9bf6e7d7eae550.zip | |
feat(lsp): multi-client support for signature_help
Signatures can be cycled using `<C-s>` when the user enters the floating
window.
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/lsp.txt | 2 | ||||
| -rw-r--r-- | runtime/doc/news.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 6e5c85c019..87df1e06d6 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -1911,7 +1911,7 @@ make_floating_popup_options({width}, {height}, {opts}) |vim.lsp.util.open_floating_preview.Opts|. Return: ~ - (`table`) Options + (`vim.api.keyset.win_config`) *vim.lsp.util.make_formatting_params()* make_formatting_params({options}) diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index f82cf4453e..3ed1442a96 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -209,6 +209,8 @@ LSP `textDocument/rangesFormatting` request). • |vim.lsp.buf.code_action()| actions show client name when there are multiple clients. +• |vim.lsp.buf.signature_help()| can now cycle through different signatures + using `<C-s>` and also support multiple clients. LUA |