[nvim] fix: lsp count in statusline

vim.lsp.diagnostic.get_count() got deprecated
This commit is contained in:
David JULIEN 2021-12-12 23:35:54 +01:00
parent f35c6599c0
commit 7a0030b064
1 changed files with 6 additions and 1 deletions

View File

@ -109,7 +109,12 @@ local function get_lsp_diagnostics(bufnr)
}
for k, level in pairs(levels) do
result[k] = vim.lsp.diagnostic.get_count(bufnr, level)
local count = 0
local diags = vim.diagnostic.get(bufnr, { severity = level })
for _, _ in pairs(diags) do
count = count + 1
end
result[k] = count
end
return result