diff options
| author | Matthieu Coudron <teto@users.noreply.github.com> | 2021-01-01 23:52:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-01 23:52:48 +0100 |
| commit | 48caf1df8581a9a9da9072f901411b918333952d (patch) | |
| tree | c1dfa6befd03c69c8d70fcc67996905ce6faf091 /runtime/doc | |
| parent | 4a0a6f7bff64b03c80dd84444fc4dbddbe1065ad (diff) | |
| parent | f3bbc92476df1112deb34b9c7408cd594ee47a50 (diff) | |
| download | rneovim-48caf1df8581a9a9da9072f901411b918333952d.tar.gz rneovim-48caf1df8581a9a9da9072f901411b918333952d.tar.bz2 rneovim-48caf1df8581a9a9da9072f901411b918333952d.zip | |
Merge pull request #13649 from mjlbach/move_from_nvim-lspconfig
LSP: Move workspace/configuration 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. |