diff options
author | Kirill Bulatov <[email protected]> | 2019-12-19 14:18:09 +0000 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2019-12-19 14:18:09 +0000 |
commit | 4fb25ef43bd96da94467ffa4de8fbf0af82b28d1 (patch) | |
tree | bccdcbad14a78bf670f77f1f98208009ea80b8dd /crates/ra_lsp_server/src/config.rs | |
parent | 3969c7c85373554fcd80aee359cd0def14f7a528 (diff) |
Do not add any new configuration parameters
Diffstat (limited to 'crates/ra_lsp_server/src/config.rs')
-rw-r--r-- | crates/ra_lsp_server/src/config.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/ra_lsp_server/src/config.rs b/crates/ra_lsp_server/src/config.rs index a916c5fd6..67942aa41 100644 --- a/crates/ra_lsp_server/src/config.rs +++ b/crates/ra_lsp_server/src/config.rs | |||
@@ -31,7 +31,6 @@ pub struct ServerConfig { | |||
31 | pub lru_capacity: Option<usize>, | 31 | pub lru_capacity: Option<usize>, |
32 | 32 | ||
33 | pub max_inlay_hint_length: Option<usize>, | 33 | pub max_inlay_hint_length: Option<usize>, |
34 | pub show_default_types_in_inlay_hints: bool, | ||
35 | 34 | ||
36 | /// For internal usage to make integrated tests faster. | 35 | /// For internal usage to make integrated tests faster. |
37 | #[serde(deserialize_with = "nullable_bool_true")] | 36 | #[serde(deserialize_with = "nullable_bool_true")] |
@@ -52,7 +51,6 @@ impl Default for ServerConfig { | |||
52 | use_client_watching: false, | 51 | use_client_watching: false, |
53 | lru_capacity: None, | 52 | lru_capacity: None, |
54 | max_inlay_hint_length: None, | 53 | max_inlay_hint_length: None, |
55 | show_default_types_in_inlay_hints: false, | ||
56 | with_sysroot: true, | 54 | with_sysroot: true, |
57 | feature_flags: FxHashMap::default(), | 55 | feature_flags: FxHashMap::default(), |
58 | cargo_features: Default::default(), | 56 | cargo_features: Default::default(), |