diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-10-22 08:57:37 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-10-22 08:57:37 +0100 |
commit | 8f4480d180386541b8f918bda14479f9a896eb85 (patch) | |
tree | e8f7533cd46894797a4440f80bfad3c294dd19da /crates/ra_lsp_server/src/world.rs | |
parent | e4810a302b4badb024d22da50cfa4aae64184493 (diff) | |
parent | 6d105ccd93b8793592a6e89872766fcaf6c822e4 (diff) |
Merge #2044
2044: Fixup folding ranges for clients with lineFoldingOnly=true r=matklad a=ztlpn
Fixes #2033
Co-authored-by: Alex Zatelepin <[email protected]>
Diffstat (limited to 'crates/ra_lsp_server/src/world.rs')
-rw-r--r-- | crates/ra_lsp_server/src/world.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_lsp_server/src/world.rs b/crates/ra_lsp_server/src/world.rs index 0eb684de5..51824e7a3 100644 --- a/crates/ra_lsp_server/src/world.rs +++ b/crates/ra_lsp_server/src/world.rs | |||
@@ -27,6 +27,7 @@ use crate::{ | |||
27 | pub struct Options { | 27 | pub struct Options { |
28 | pub publish_decorations: bool, | 28 | pub publish_decorations: bool, |
29 | pub supports_location_link: bool, | 29 | pub supports_location_link: bool, |
30 | pub line_folding_only: bool, | ||
30 | } | 31 | } |
31 | 32 | ||
32 | /// `WorldState` is the primary mutable state of the language server | 33 | /// `WorldState` is the primary mutable state of the language server |