mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
feat(lsp): show active clients in :checkhealth vim.lsp (#21670)
For users using vim.lsp.start it can be useful to get an overview of active client that is less verbose than a full `:lua =vim.lsp.get_active_clients()`
This commit is contained in:
parent
0b136a14dc
commit
d1b3611f03
@ -2,8 +2,8 @@ local M = {}
|
||||
|
||||
--- Performs a healthcheck for LSP
|
||||
function M.check()
|
||||
local report_info = vim.fn['health#report_info']
|
||||
local report_warn = vim.fn['health#report_warn']
|
||||
local report_info = vim.health.report_info
|
||||
local report_warn = vim.health.report_warn
|
||||
|
||||
local log = require('vim.lsp.log')
|
||||
local current_log_level = log.get_level()
|
||||
@ -27,6 +27,18 @@ function M.check()
|
||||
|
||||
local report_fn = (log_size / 1000000 > 100 and report_warn or report_info)
|
||||
report_fn(string.format('Log size: %d KB', log_size / 1000))
|
||||
|
||||
local clients = vim.lsp.get_active_clients()
|
||||
vim.health.report_start('vim.lsp: Active Clients')
|
||||
if next(clients) then
|
||||
for _, client in pairs(clients) do
|
||||
report_info(
|
||||
string.format('%s (id=%s, root_dir=%s)', client.name, client.id, client.config.root_dir)
|
||||
)
|
||||
end
|
||||
else
|
||||
report_info('No active clients')
|
||||
end
|
||||
end
|
||||
|
||||
return M
|
||||
|
Loading…
Reference in New Issue
Block a user