aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2024-10-02 06:57:18 -0700
committerGitHub <noreply@github.com>2024-10-02 06:57:18 -0700
commite6569c18c21be5166e4b9cc7530e828b8285c84e (patch)
tree72801068988c64be91dd543cddc71ab226766551 /README.md
parentci: refactor ci output (diff)
downloadnvim-lspconfig-e6569c18c21be5166e4b9cc7530e828b8285c84e.tar
nvim-lspconfig-e6569c18c21be5166e4b9cc7530e828b8285c84e.tar.gz
nvim-lspconfig-e6569c18c21be5166e4b9cc7530e828b8285c84e.tar.bz2
nvim-lspconfig-e6569c18c21be5166e4b9cc7530e828b8285c84e.tar.lz
nvim-lspconfig-e6569c18c21be5166e4b9cc7530e828b8285c84e.tar.xz
nvim-lspconfig-e6569c18c21be5166e4b9cc7530e828b8285c84e.tar.zst
nvim-lspconfig-e6569c18c21be5166e4b9cc7530e828b8285c84e.zip
feat(lspinfo): replace :LspInfo with :checkhealth #3339
Problem: :LspInfo has its own "inner platlform" of highlights, mappings etc. And it doesn't integrate with :checkhealth. Solution: - Move the lspinfo code to a healthcheck. - LspInfo features such as highlights, "floating window" presentation, etc., should be added to :checkhealth in Nvim core, if they are really needed. - Define a "q" mapping until Nvim stable has that in :checkhealth.
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 29ba336b..29c68dcc 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` shows the status of active and configured language servers.
+* `:LspInfo` (deprecated alias to `:che lspconfig`) 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>` Defaults to stopping all buffer clients.
* `:LspRestart <client_id>` Defaults to restarting all buffer clients.