diff options
author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-04-21 21:51:51 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-21 14:51:51 +0200 |
commit | 2a5d766581e8be0908d4d045d3bb9fa56a821b63 (patch) | |
tree | c5c571f2101166df2bdbf5acc381db9128890476 | |
parent | e58a03a68eb76f1205a9851c34d39dbd3834f656 (diff) | |
download | rneovim-2a5d766581e8be0908d4d045d3bb9fa56a821b63.tar.gz rneovim-2a5d766581e8be0908d4d045d3bb9fa56a821b63.tar.bz2 rneovim-2a5d766581e8be0908d4d045d3bb9fa56a821b63.zip |
doc: fix vim.lsp.stop_all_clients doc (#12055)
-rw-r--r-- | runtime/doc/lsp.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 2f5427f6fc..4c59e53343 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -64,7 +64,7 @@ FAQ *lsp-faq* - Q: How to force-reload LSP? A: Stop all clients, then reload the buffer. > - :lua vim.lsp.stop_all_clients() + :lua vim.lsp.stop_client(vim.lsp.get_active_clients()) :edit - Q: Why isn't completion working? |