aboutsummaryrefslogtreecommitdiff
path: root/crates/rust-analyzer/src/config.rs
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2021-03-23 17:43:55 +0000
committerKirill Bulatov <[email protected]>2021-03-23 17:43:55 +0000
commit5e83a56dfb69320b4fe3a980a1d1b79bab301894 (patch)
tree73630a398f1ae6d579e57444406534e7012d3b9c /crates/rust-analyzer/src/config.rs
parentf1e1a2c0a79cc5cdab5ee6c6af21661d8e0731d8 (diff)
Bump the default hint length
Diffstat (limited to 'crates/rust-analyzer/src/config.rs')
-rw-r--r--crates/rust-analyzer/src/config.rs2
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",