home: vim: fix deprecated calls

This commit is contained in:
Bruno BELANYI 2025-03-29 16:17:59 +00:00
parent dfb3c353ec
commit 274d143031
2 changed files with 8 additions and 11 deletions

View file

@ -38,7 +38,7 @@ end
--- @param bufnr int? buffer number
--- @return table all active LSP client names
M.list_lsp_clients = function(bufnr)
local clients = vim.lsp.get_active_clients({ bufnr = bufnr })
local clients = vim.lsp.get_clients({ bufnr = bufnr })
local names = {}
for _, client in ipairs(clients) do