aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2024-03-21 15:15:20 +0000
committerLewis Russell <me@lewisr.dev>2024-03-25 18:02:38 +0000
commit3f238b39cfdf27657b2d9452c6ffd28f8209c95f (patch)
tree65a0942f50ae708bcaf590628cba43a096799116 /runtime/doc
parent31a15fb2a1878ae8acd3f9140cf40a0b09235071 (diff)
downloadrneovim-3f238b39cfdf27657b2d9452c6ffd28f8209c95f.tar.gz
rneovim-3f238b39cfdf27657b2d9452c6ffd28f8209c95f.tar.bz2
rneovim-3f238b39cfdf27657b2d9452c6ffd28f8209c95f.zip
refactor(lsp): simplify client tracking
- Remove: - uninitialized_clients - active_clients - all_buffer_active_clients - Add: - all_clients - Use `lsp.get_clients()` to get buffer clients.
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/lsp.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt
index ed5e3b63f9..451183b508 100644
--- a/runtime/doc/lsp.txt
+++ b/runtime/doc/lsp.txt
@@ -907,8 +907,8 @@ stop_client({client_id}, {force}) *vim.lsp.stop_client()*
for this client, then force-shutdown is attempted.
Parameters: ~
- • {client_id} (`integer|vim.lsp.Client`) id or |vim.lsp.Client| object,
- or list thereof
+ • {client_id} (`integer|integer[]|vim.lsp.Client[]`) id, list of id's,
+ or list of |vim.lsp.Client| objects
• {force} (`boolean?`) shutdown forcefully
tagfunc({pattern}, {flags}) *vim.lsp.tagfunc()*