diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-07-22 15:56:34 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-22 15:56:34 +0100 |
commit | 20b37f264fe89f048d052e2b7c86884d3103cc9e (patch) | |
tree | 7d655cbcb1ea37798af7615c8c6d28e16410248a | |
parent | 1c7d5f513cc583413a717fa14c2a394c182d69d6 (diff) | |
parent | 9c0ead30b97ddb9784b20c06aebd2fbf0187a106 (diff) |
Merge #5489
5489: Clarify initializationOptions r=matklad a=kjeremy
Co-authored-by: Jeremy Kolb <[email protected]>
-rw-r--r-- | docs/dev/lsp-extensions.md | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/dev/lsp-extensions.md b/docs/dev/lsp-extensions.md index 6d6bbac7c..98d14450b 100644 --- a/docs/dev/lsp-extensions.md +++ b/docs/dev/lsp-extensions.md | |||
@@ -11,11 +11,13 @@ If you want to be notified about the changes to this document, subscribe to [#46 | |||
11 | 11 | ||
12 | ## `initializationOptions` | 12 | ## `initializationOptions` |
13 | 13 | ||
14 | As `initializationOptions`, `rust-analyzer` expects `"rust-analyzer"` section of the configuration. | 14 | For `initializationOptions`, `rust-analyzer` expects `"rust-analyzer"` section of the configuration. |
15 | That is, `rust-analyzer` usually sends `"workspace/configuration"` request with `{ "items": ["rust-analyzer"] }` payload. | 15 | That is, `rust-analyzer` usually sends `"workspace/configuration"` request with `{ "items": ["rust-analyzer"] }` payload. |
16 | `initializationOptions` should contain the same data that would be in the first item of the result. | 16 | `initializationOptions` should contain the same data that would be in the first item of the result. |
17 | It's OK to not send anything, then all the settings would take their default values. | 17 | If a language client does not know about `rust-analyzer`'s configuration options it can get sensible defaults by doing any of the following: |
18 | However, some settings can not be changed after startup at the moment. | 18 | * Not sending `initializationOptions` |
19 | * Send `"initializationOptions": null` | ||
20 | * Send `"initializationOptions": {}` | ||
19 | 21 | ||
20 | ## Snippet `TextEdit` | 22 | ## Snippet `TextEdit` |
21 | 23 | ||