diff options
author | Kirill Bulatov <[email protected]> | 2021-03-23 17:43:55 +0000 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2021-03-23 17:43:55 +0000 |
commit | 5e83a56dfb69320b4fe3a980a1d1b79bab301894 (patch) | |
tree | 73630a398f1ae6d579e57444406534e7012d3b9c /crates | |
parent | f1e1a2c0a79cc5cdab5ee6c6af21661d8e0731d8 (diff) |
Bump the default hint length
Diffstat (limited to 'crates')
-rw-r--r-- | crates/rust-analyzer/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/config.rs b/crates/rust-analyzer/src/config.rs index f49c4c33a..cda272fd4 100644 --- a/crates/rust-analyzer/src/config.rs +++ b/crates/rust-analyzer/src/config.rs | |||
@@ -132,7 +132,7 @@ config_data! { | |||
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. Set to null to have an unlimited length. | 134 | /// Maximum length for inlay hints. Set to null to have an unlimited length. |
135 | inlayHints_maxLength: Option<usize> = "20", | 135 | inlayHints_maxLength: Option<usize> = "25", |
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", |