aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp.lua
diff options
context:
space:
mode:
authorChristian Segundo <chn2guevara@gmail.com>2023-01-03 13:44:44 +0100
committerGitHub <noreply@github.com>2023-01-03 13:44:44 +0100
commit5b22b32e50858b781eb2658ba099eaffaa5ea13b (patch)
treebed5cafbdeb938e9c7490acf5185870f67d01fc8 /runtime/lua/vim/lsp.lua
parenta3c92f6b6cae67ae417b05fb2b8fb61dc6c11b7c (diff)
downloadrneovim-5b22b32e50858b781eb2658ba099eaffaa5ea13b.tar.gz
rneovim-5b22b32e50858b781eb2658ba099eaffaa5ea13b.tar.bz2
rneovim-5b22b32e50858b781eb2658ba099eaffaa5ea13b.zip
fix(lsp): change vim.lsp.get_active_clients.filter name annotation to string (#21624)
Diffstat (limited to 'runtime/lua/vim/lsp.lua')
-rw-r--r--runtime/lua/vim/lsp.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua
index ad0e599f61..1d99283dd9 100644
--- a/runtime/lua/vim/lsp.lua
+++ b/runtime/lua/vim/lsp.lua
@@ -1822,7 +1822,7 @@ end
---@class vim.lsp.get_active_clients.filter
---@field id number|nil Match clients by id
---@field bufnr number|nil match clients attached to the given buffer
----@field name number|nil match clients by name
+---@field name string|nil match clients by name
--- Get active clients.
---