aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-03-26 12:13:08 -0700
committerGitHub <noreply@github.com>2025-03-26 12:13:08 -0700
commit401e50fae626c4707af12114b5ddb7bb9f4236a4 (patch)
tree5a8aafda5664f3283d93d6f8a2ded3a5c292ab2d /README.md
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-401e50fae626c4707af12114b5ddb7bb9f4236a4.tar
nvim-lspconfig-401e50fae626c4707af12114b5ddb7bb9f4236a4.tar.gz
nvim-lspconfig-401e50fae626c4707af12114b5ddb7bb9f4236a4.tar.bz2
nvim-lspconfig-401e50fae626c4707af12114b5ddb7bb9f4236a4.tar.lz
nvim-lspconfig-401e50fae626c4707af12114b5ddb7bb9f4236a4.tar.xz
nvim-lspconfig-401e50fae626c4707af12114b5ddb7bb9f4236a4.tar.zst
nvim-lspconfig-401e50fae626c4707af12114b5ddb7bb9f4236a4.zip
feat: alias :LspInfo to `:checkhealth vim.lsp` #3663
Problem: `:checkhealth lspconfig` has no benefits vs `:checkhealth vim.lsp`. Solution: - on Nvim 0.11+, `:LspInfo` is an alias to `:checkhealth vim.lsp` instead of `:checkhealth lspconfig`. - `lua/lspconfig/health.lua` will be removed in a few months.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index e7d00d63..ba6be869 100644
--- a/README.md
+++ b/README.md
@@ -120,7 +120,7 @@ Most of the time, the reason for failure is present in the logs.
## Commands
-* `:LspInfo` (deprecated alias to `:che lspconfig`) shows the status of active and configured language servers.
+* `:LspInfo` (alias to `:checkhealth vim.lsp`) shows the status of active and configured language servers.
* `:LspStart <config_name>` Start the requested server name. Will only successfully start if the command detects a root directory matching the current config. Pass `autostart = false` to your `.setup{}` call for a language server if you would like to launch clients solely with this command. Defaults to all servers matching current buffer filetype.
* `:LspStop [<client_id_or_name> ...]` Stops the given server(s). Defaults to
stopping all servers active on the current buffer. To force stop add `++force`