docs(lsp): remove obsolete didChangeConfiguration explanation (#27595)

Rendered obsolete by c6d747e6a5.
This commit is contained in:
Tim Pope 2024-02-24 01:19:33 -05:00 committed by GitHub
parent 99288ecc77
commit 15f7ac6a04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 9 deletions

View File

@ -1034,11 +1034,7 @@ start_client({config}) *vim.lsp.start_client()*
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.
notifications are sent.
• on_exit Callback (code, signal, client_id) invoked on
client exit.
• code: exit code of the process

View File

@ -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.