You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NeoVim Version
NVIM v0.11.0-dev-45+g879d17ea8
Build type: RelWithDebInfo
LuaJIT 2.1.1713484068
Run "nvim -V1 -v" for more info
Describe the bug
get_active_clients is deprecated in version 0.10 and will be remove in 0.12, so it call notify and make popups.
the problem is on line 35 for _, client in pairs(vim.lsp.get_active_clients(filters)) do in lsp.lua
have to fix
replace vim.lsp.get_active_clients with (vim.lsp.get_clients or vim.lsp.get_active_clients) with the () is important as it will pick the new get_clients if found ellers fall back on the old get_active_clients for old versions.
so the line should look like this for _, client in pairs((vim.lsp.get_clients or vim.lsp.get_active_clients)(filters)) do
thanks for a great plugin.
The text was updated successfully, but these errors were encountered:
NeoVim Version
NVIM v0.11.0-dev-45+g879d17ea8
Build type: RelWithDebInfo
LuaJIT 2.1.1713484068
Run "nvim -V1 -v" for more info
Describe the bug
get_active_clients is deprecated in version 0.10 and will be remove in 0.12, so it call notify and make popups.
the problem is on line 35
for _, client in pairs(vim.lsp.get_active_clients(filters)) do
in lsp.luahave to fix
replace
vim.lsp.get_active_clients
with(vim.lsp.get_clients or vim.lsp.get_active_clients)
with the () is important as it will pick the new get_clients if found ellers fall back on the old get_active_clients for old versions.so the line should look like this
for _, client in pairs((vim.lsp.get_clients or vim.lsp.get_active_clients)(filters)) do
thanks for a great plugin.
The text was updated successfully, but these errors were encountered: