aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Fußenegger <mfussenegger@users.noreply.github.com>2023-01-08 09:23:08 +0100
committerGitHub <noreply@github.com>2023-01-08 09:23:08 +0100
commitd1b3611f03625467500195b38d3c4646a7bc81db (patch)
treee13a9ab1ff0ab197431db50729b12b007ae59f7f
parent0b136a14dc215d94ceac6d72d9f9fcb1c3ea5bc9 (diff)
downloadrneovim-d1b3611f03625467500195b38d3c4646a7bc81db.tar.gz
rneovim-d1b3611f03625467500195b38d3c4646a7bc81db.tar.bz2
rneovim-d1b3611f03625467500195b38d3c4646a7bc81db.zip
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()`
-rw-r--r--runtime/lua/vim/lsp/health.lua16
1 files changed, 14 insertions, 2 deletions
diff --git a/runtime/lua/vim/lsp/health.lua b/runtime/lua/vim/lsp/health.lua
index ba730e3d6d..987707e661 100644
--- a/runtime/lua/vim/lsp/health.lua
+++ b/runtime/lua/vim/lsp/health.lua
@@ -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