diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-01-23 08:43:06 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-23 17:43:06 +0100 |
commit | 3a3e6742f94454161be61b3257167599a5b72cdf (patch) | |
tree | e0a6feb5fe22a55a76cdd7dcce1c052d54e29c53 /runtime/doc | |
parent | 24b60322a25b7bc254663d9fc9fbb15cc348b850 (diff) | |
download | rneovim-3a3e6742f94454161be61b3257167599a5b72cdf.tar.gz rneovim-3a3e6742f94454161be61b3257167599a5b72cdf.tar.bz2 rneovim-3a3e6742f94454161be61b3257167599a5b72cdf.zip |
lsp: clear diagnostics on client shutdown (#13788)
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/lsp.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 772afdcc1a..06666c3a27 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -679,6 +679,14 @@ get_active_clients() *vim.lsp.get_active_clients()* Return: ~ Table of |vim.lsp.client| objects + *vim.lsp.get_buffers_by_client_id()* +get_buffers_by_client_id({client_id}) + Parameters: ~ + {client_id} client id + + Return: ~ + list of buffer ids + get_client_by_id({client_id}) *vim.lsp.get_client_by_id()* Gets a client by id, or nil if the id is invalid. The returned client may not yet be fully initialized. @@ -1754,7 +1762,7 @@ make_workspace_params({added}, {removed}) Create the workspace params Parameters: ~ - {added} + {added} {removed} *vim.lsp.util.open_floating_preview()* |