aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lspconfig.txt
diff options
context:
space:
mode:
authorRaphael <glepnir@neovim.pro>2022-12-07 20:21:21 +0800
committerGitHub <noreply@github.com>2022-12-07 20:21:21 +0800
commit23c72d4da3656af72aba5950e5ad7c85dbca71f2 (patch)
treeba4ec3bc488bb6bb5441d2260f0f6be1caff61f6 /doc/lspconfig.txt
parentfix: typo of vim.loop.cwd (#2293) (diff)
downloadnvim-lspconfig-23c72d4da3656af72aba5950e5ad7c85dbca71f2.tar
nvim-lspconfig-23c72d4da3656af72aba5950e5ad7c85dbca71f2.tar.gz
nvim-lspconfig-23c72d4da3656af72aba5950e5ad7c85dbca71f2.tar.bz2
nvim-lspconfig-23c72d4da3656af72aba5950e5ad7c85dbca71f2.tar.lz
nvim-lspconfig-23c72d4da3656af72aba5950e5ad7c85dbca71f2.tar.xz
nvim-lspconfig-23c72d4da3656af72aba5950e5ad7c85dbca71f2.tar.zst
nvim-lspconfig-23c72d4da3656af72aba5950e5ad7c85dbca71f2.zip
feat: support force stop language server (#2294)
* feat: support force stop language server * feat: use vim syntax * feat: update doc
Diffstat (limited to 'doc/lspconfig.txt')
-rw-r--r--doc/lspconfig.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/lspconfig.txt b/doc/lspconfig.txt
index 8144b708..5a387a97 100644
--- a/doc/lspconfig.txt
+++ b/doc/lspconfig.txt
@@ -467,7 +467,8 @@ contained in `:LspInfo`:
if it successfully resolves a root directory. Note: Defaults to all
configured servers matching the current buffer filetype.
- `:LspStop <client_id>` stops the server with the given client id. Defaults to
- stopping all servers active on the current buffer.
+ stopping all servers active on the current buffer. if you want to force stop
+ a language server you can do it like `:LspStop <client_id> ++force`
- `:LspRestart <client_id>` restarts the client with the given client id, and
will attempt to reattach to all previously attached buffers.