aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json14
1 files changed, 12 insertions, 2 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index a2ed9b2d5..d263610f5 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -208,6 +208,16 @@
208 "command": "rust-analyzer.peekTests", 208 "command": "rust-analyzer.peekTests",
209 "title": "Peek related tests", 209 "title": "Peek related tests",
210 "category": "Rust Analyzer" 210 "category": "Rust Analyzer"
211 },
212 {
213 "command": "rust-analyzer.moveItemUp",
214 "title": "Move item up",
215 "category": "Rust Analyzer"
216 },
217 {
218 "command": "rust-analyzer.moveItemDown",
219 "title": "Move item down",
220 "category": "Rust Analyzer"
211 } 221 }
212 ], 222 ],
213 "keybindings": [ 223 "keybindings": [
@@ -615,8 +625,8 @@
615 "type": "boolean" 625 "type": "boolean"
616 }, 626 },
617 "rust-analyzer.inlayHints.maxLength": { 627 "rust-analyzer.inlayHints.maxLength": {
618 "markdownDescription": "Maximum length for inlay hints. Default is unlimited.", 628 "markdownDescription": "Maximum length for inlay hints. Set to null to have an unlimited length.",
619 "default": null, 629 "default": 25,
620 "type": [ 630 "type": [
621 "null", 631 "null",
622 "integer" 632 "integer"