diff options
| author | Lewis Russell <lewis6991@gmail.com> | 2024-10-22 12:16:24 +0100 |
|---|---|---|
| committer | Lewis Russell <me@lewisr.dev> | 2024-10-22 21:59:48 +0100 |
| commit | 629a5b71b55e439392e2a5791940f6dc8d0dd7c0 (patch) | |
| tree | 5d581eadedfb5ecb942c2b6522064d75a7f24e8e /runtime/doc | |
| parent | 4c25e60767508a3f8bc0631d280407a08f24a67e (diff) | |
| download | rneovim-629a5b71b55e439392e2a5791940f6dc8d0dd7c0.tar.gz rneovim-629a5b71b55e439392e2a5791940f6dc8d0dd7c0.tar.bz2 rneovim-629a5b71b55e439392e2a5791940f6dc8d0dd7c0.zip | |
fix(lsp): support multiple clients in typehierarchy
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/lua.txt | 2 | ||||
| -rw-r--r-- | runtime/doc/news.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 2f8488a128..9d422026e6 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -2677,7 +2677,7 @@ vim.ui.select({items}, {opts}, {on_choice}) *vim.ui.select()* item shape. Plugins reimplementing `vim.ui.select` may wish to use this to infer the structure or semantics of `items`, or the context in which select() was called. - • {on_choice} (`fun(item: any?, idx: integer?)`) Called once the user + • {on_choice} (`fun(item: T?, idx: integer?)`) Called once the user made a choice. `idx` is the 1-based index of `item` within `items`. `nil` if the user aborted the dialog. diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index adba659851..0ec08ac324 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -86,6 +86,8 @@ LSP |vim.lsp.buf.type_definition()| and |vim.lsp.buf.implementation()| now support merging the results of multiple clients but no longer trigger the global handlers from `vim.lsp.handlers` +• |vim.lsp.buf.typehierarchy()| now passes the correct params for each + client request. LUA |