diff options
Diffstat (limited to 'crates/ra_lsp_server/src')
-rw-r--r-- | crates/ra_lsp_server/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_lsp_server/src/main.rs b/crates/ra_lsp_server/src/main.rs index 038912de0..721665eed 100644 --- a/crates/ra_lsp_server/src/main.rs +++ b/crates/ra_lsp_server/src/main.rs | |||
@@ -28,8 +28,8 @@ fn main() -> Result<()> { | |||
28 | #[serde(rename_all = "camelCase")] | 28 | #[serde(rename_all = "camelCase")] |
29 | struct InitializationOptions { | 29 | struct InitializationOptions { |
30 | // Whether the client supports our custom highlighting publishing decorations. | 30 | // Whether the client supports our custom highlighting publishing decorations. |
31 | // This is different to the highlightingOn setting, which is whether the client | 31 | // This is different to the highlightingOn setting, which is whether the user |
32 | // wants highlighting to be used or sent. | 32 | // wants our custom highlighting to be used. |
33 | publish_decorations: Option<bool>, | 33 | publish_decorations: Option<bool>, |
34 | } | 34 | } |
35 | 35 | ||