diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2024-10-02 06:57:18 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-02 06:57:18 -0700 |
| commit | e6569c18c21be5166e4b9cc7530e828b8285c84e (patch) | |
| tree | 72801068988c64be91dd543cddc71ab226766551 /README.md | |
| parent | ci: refactor ci output (diff) | |
| download | nvim-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.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |
