diff options
author | Kirill Bulatov <[email protected]> | 2021-03-23 17:04:48 +0000 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2021-03-23 17:04:48 +0000 |
commit | f1e1a2c0a79cc5cdab5ee6c6af21661d8e0731d8 (patch) | |
tree | 4b933da4aaf8103f7e8ae366ecdbd5577b44c4c9 /editors | |
parent | c220b340958c447b72330148e44f24c9204f84c2 (diff) |
Limit the hints size by default
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/package.json | 4 |
1 files changed, 2 insertions, 2 deletions
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" |