diff options
| author | Mathias Fußenegger <mfussenegger@users.noreply.github.com> | 2023-07-12 14:48:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-12 14:48:21 +0200 |
| commit | 317c80f460a7826421f40f57ee8bdbd736b0f225 (patch) | |
| tree | 06bb41ef6332fbd0cd4585969e7b3c12c76b444b /runtime/doc | |
| parent | ef94fb69c65bc2e4c67826de6373c202b55b7d5a (diff) | |
| download | rneovim-317c80f460a7826421f40f57ee8bdbd736b0f225.tar.gz rneovim-317c80f460a7826421f40f57ee8bdbd736b0f225.tar.bz2 rneovim-317c80f460a7826421f40f57ee8bdbd736b0f225.zip | |
feat(lsp): add method filter to get_active_clients (#24319)
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/lsp.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 4bafb622a6..3aef5bb7dd 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -780,6 +780,8 @@ get_active_clients({filter}) *vim.lsp.get_active_clients()* • bufnr (number): Only return clients attached to this buffer • name (string): Only return clients with the given name + • method (string): Only return clients supporting the given + method Return: ~ lsp.Client []: List of |vim.lsp.client| objects |