diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2020-12-30 16:05:30 -0800 |
|---|---|---|
| committer | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-01-01 01:40:33 -0800 |
| commit | e467d29390495ac05dd99942339640bfaacd4108 (patch) | |
| tree | 4e0d1a917dc60d1ffe3bae6d81d794f32c759d52 /runtime/doc | |
| parent | 874208266142c0a93d2076525256b813ff9b74e0 (diff) | |
| download | rneovim-e467d29390495ac05dd99942339640bfaacd4108.tar.gz rneovim-e467d29390495ac05dd99942339640bfaacd4108.tar.bz2 rneovim-e467d29390495ac05dd99942339640bfaacd4108.zip | |
LSP: Move workspace/configuration handler from nvim-lspconfig to core
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/lsp.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 8e93b188e9..02d41e7f53 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -755,6 +755,10 @@ start_client({config}) *vim.lsp.start_client()* array. {handlers} Map of language server method names to |lsp-handler| + {settings} Map with language server specific + settings. These are returned to the language server if + requested via `workspace/configuration`. Keys are + case-sensitive. {init_options} Values to pass in the initialization request as `initializationOptions` . See `initialize` in the LSP spec. |