aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-12-16 14:24:31 -0500
committerGitHub <noreply@github.com>2025-12-16 14:24:31 -0500
commitef96fce99c72ff4b6e9c44ed6b15f8a52e6a7284 (patch)
treeddb30c087926a18e080fccf398c088666d395ad1
parentdocs: ":lsp ..." in Nvim 0.12 #4243 (diff)
downloadnvim-lspconfig-ef96fce99c72ff4b6e9c44ed6b15f8a52e6a7284.tar
nvim-lspconfig-ef96fce99c72ff4b6e9c44ed6b15f8a52e6a7284.tar.gz
nvim-lspconfig-ef96fce99c72ff4b6e9c44ed6b15f8a52e6a7284.tar.bz2
nvim-lspconfig-ef96fce99c72ff4b6e9c44ed6b15f8a52e6a7284.tar.lz
nvim-lspconfig-ef96fce99c72ff4b6e9c44ed6b15f8a52e6a7284.tar.xz
nvim-lspconfig-ef96fce99c72ff4b6e9c44ed6b15f8a52e6a7284.tar.zst
nvim-lspconfig-ef96fce99c72ff4b6e9c44ed6b15f8a52e6a7284.zip
docs #4244
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index b1da3af4..5993f488 100644
--- a/README.md
+++ b/README.md
@@ -166,9 +166,9 @@ Most of the time, the reason for failure is present in the logs.
## Commands
* `:LspInfo` (alias to `:checkhealth vim.lsp`) shows the status of active and configured language servers.
-* `:lsp enable <config_name>` (`:LspStart <config_name>` for Nvim 0.11 or older) Start the requested server name. Will only successfully start if the command detects a root directory matching the current config.
-* `:lsp disable <client_id_or_name>` (`:LspStop [<client_id_or_name>]` for Nvim 0.11 or older) Stops the given server. Defaults to stopping all servers active on the current buffer. To force stop use `:LspStop!`
-* `:lsp restart <client_id_or_name>` (`:LspRestart [<client_id_or_name>]` for Nvim 0.11 or older) Restarts the given client, and attempts to reattach to all previously attached buffers. Defaults to restarting all active servers.
+* `:lsp enable [<config_name>]` (`:LspStart` for Nvim 0.11 or older) Start the requested server name. Will only successfully start if the command detects a root directory matching the current config.
+* `:lsp disable [<client_id_or_name>]` (`:LspStop` for Nvim 0.11 or older) Stops the given server. Defaults to stopping all servers active on the current buffer. To force stop use `:LspStop!`
+* `:lsp restart [<client_id_or_name>]` (`:LspRestart` for Nvim 0.11 or older) Restarts the given client, and attempts to reattach to all previously attached buffers. Defaults to restarting all active servers.
## Contributions