aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp.lua
diff options
context:
space:
mode:
authorTim Pope <code@tpope.net>2024-02-24 01:19:33 -0500
committerGitHub <noreply@github.com>2024-02-24 07:19:33 +0100
commit15f7ac6a045aad3355e4c6006423fde81644886a (patch)
tree53ab9e17debbf90c118f51b181f009c62c8b2370 /runtime/lua/vim/lsp.lua
parent99288ecc77e429ffe06842157e72ed612e97a419 (diff)
downloadrneovim-15f7ac6a045aad3355e4c6006423fde81644886a.tar.gz
rneovim-15f7ac6a045aad3355e4c6006423fde81644886a.tar.bz2
rneovim-15f7ac6a045aad3355e4c6006423fde81644886a.zip
docs(lsp): remove obsolete didChangeConfiguration explanation (#27595)
Rendered obsolete by c6d747e6a5227e17556c62e16ed054398eb1a89a.
Diffstat (limited to 'runtime/lua/vim/lsp.lua')
-rw-r--r--runtime/lua/vim/lsp.lua5
1 files changed, 1 insertions, 4 deletions
diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua
index 8608bdfa57..689d942d72 100644
--- a/runtime/lua/vim/lsp.lua
+++ b/runtime/lua/vim/lsp.lua
@@ -641,10 +641,7 @@ end
--- the server may send. For example, clangd sends
--- `initialize_result.offsetEncoding` if `capabilities.offsetEncoding` was
--- sent to it. You can only modify the `client.offset_encoding` here before
---- any notifications are sent. Most language servers expect to be sent client specified settings after
---- initialization. Nvim does not make this assumption. A
---- `workspace/didChangeConfiguration` notification should be sent
---- to the server during on_init.
+--- any notifications are sent.
---
--- - on_exit Callback (code, signal, client_id) invoked on client
--- exit.