diff options
-rw-r--r-- | crates/rust-analyzer/src/config.rs | 4 | ||||
-rw-r--r-- | docs/user/generated_config.adoc | 4 | ||||
-rw-r--r-- | editors/code/package.json | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/crates/rust-analyzer/src/config.rs b/crates/rust-analyzer/src/config.rs index 5c88c3a9b..f49c4c33a 100644 --- a/crates/rust-analyzer/src/config.rs +++ b/crates/rust-analyzer/src/config.rs | |||
@@ -131,8 +131,8 @@ config_data! { | |||
131 | 131 | ||
132 | /// Whether to show inlay type hints for method chains. | 132 | /// Whether to show inlay type hints for method chains. |
133 | inlayHints_chainingHints: bool = "true", | 133 | inlayHints_chainingHints: bool = "true", |
134 | /// Maximum length for inlay hints. Default is unlimited. | 134 | /// Maximum length for inlay hints. Set to null to have an unlimited length. |
135 | inlayHints_maxLength: Option<usize> = "null", | 135 | inlayHints_maxLength: Option<usize> = "20", |
136 | /// Whether to show function parameter name inlay hints at the call | 136 | /// Whether to show function parameter name inlay hints at the call |
137 | /// site. | 137 | /// site. |
138 | inlayHints_parameterHints: bool = "true", | 138 | inlayHints_parameterHints: bool = "true", |
diff --git a/docs/user/generated_config.adoc b/docs/user/generated_config.adoc index c2521289c..6ea90f7af 100644 --- a/docs/user/generated_config.adoc +++ b/docs/user/generated_config.adoc | |||
@@ -206,10 +206,10 @@ Use markdown syntax for links in hover. | |||
206 | -- | 206 | -- |
207 | Whether to show inlay type hints for method chains. | 207 | Whether to show inlay type hints for method chains. |
208 | -- | 208 | -- |
209 | [[rust-analyzer.inlayHints.maxLength]]rust-analyzer.inlayHints.maxLength (default: `null`):: | 209 | [[rust-analyzer.inlayHints.maxLength]]rust-analyzer.inlayHints.maxLength (default: `20`):: |
210 | + | 210 | + |
211 | -- | 211 | -- |
212 | Maximum length for inlay hints. Default is unlimited. | 212 | Maximum length for inlay hints. Set to null to have an unlimited length. |
213 | -- | 213 | -- |
214 | [[rust-analyzer.inlayHints.parameterHints]]rust-analyzer.inlayHints.parameterHints (default: `true`):: | 214 | [[rust-analyzer.inlayHints.parameterHints]]rust-analyzer.inlayHints.parameterHints (default: `true`):: |
215 | + | 215 | + |
diff --git a/editors/code/package.json b/editors/code/package.json index faec45276..2b031aaa0 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -625,8 +625,8 @@ | |||
625 | "type": "boolean" | 625 | "type": "boolean" |
626 | }, | 626 | }, |
627 | "rust-analyzer.inlayHints.maxLength": { | 627 | "rust-analyzer.inlayHints.maxLength": { |
628 | "markdownDescription": "Maximum length for inlay hints. Default is unlimited.", | 628 | "markdownDescription": "Maximum length for inlay hints. Set to null to have an unlimited length.", |
629 | "default": null, | 629 | "default": 20, |
630 | "type": [ | 630 | "type": [ |
631 | "null", | 631 | "null", |
632 | "integer" | 632 | "integer" |