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/lua.txt | |
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/lua.txt')
-rw-r--r-- | runtime/doc/lua.txt | 2 |
1 files changed, 1 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. |