diff options
| author | Markus Koller <markus@snafu.ch> | 2025-06-10 16:14:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-10 07:14:18 -0700 |
| commit | 77d3fdfb3554632c7a3b101ded643d422de7626f (patch) | |
| tree | 85b81e2071ee8cdd74b0ff5c871584e892bb55e5 /README.md | |
| parent | fix: support :LspStart/LspStop without arguments #3890 (diff) | |
| download | nvim-lspconfig-2.3.0.tar nvim-lspconfig-2.3.0.tar.gz nvim-lspconfig-2.3.0.tar.bz2 nvim-lspconfig-2.3.0.tar.lz nvim-lspconfig-2.3.0.tar.xz nvim-lspconfig-2.3.0.tar.zst nvim-lspconfig-2.3.0.zip | |
fix: support :LspRestart without arguments #3895v2.3.0
Problem:
After the refactoring in e4d1c8b for Neovim 0.11.2 this command now
requires an argument.
Solution:
Restore the previous behaviour where `:LspRestart` defaults to
restarting all active servers.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -154,7 +154,7 @@ Most of the time, the reason for failure is present in the logs. * `: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. * `: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` -* `:LspRestart [<client_id_or_name> ...]` Restarts the given client(s), and attempts to reattach to all previously attached buffers. +* `:LspRestart [<client_id_or_name> ...]` Restarts the given client(s), and attempts to reattach to all previously attached buffers. Defaults to restarting all active servers. ## Contributions |
