Add category to the commands

This commit is contained in:
DJMcNab 2019-01-29 17:16:14 +00:00
parent 377ee9d333
commit ce939795ed

View file

@ -75,35 +75,43 @@
"commands": [ "commands": [
{ {
"command": "rust-analyzer.syntaxTree", "command": "rust-analyzer.syntaxTree",
"title": "rust-analyzer: syntax tree" "title": "Show syntax tree for current file",
"category": "Rust Analyzer"
}, },
{ {
"command": "rust-analyzer.extendSelection", "command": "rust-analyzer.extendSelection",
"title": "rust-analyzer: extend selection" "title": "Extend selection",
"category": "Rust Analyzer"
}, },
{ {
"command": "rust-analyzer.matchingBrace", "command": "rust-analyzer.matchingBrace",
"title": "rust-analyzer: matching brace" "title": "Find matching brace",
"category": "Rust Analyzer"
}, },
{ {
"command": "rust-analyzer.parentModule", "command": "rust-analyzer.parentModule",
"title": "rust-analyzer: parent module" "title": "Locate parent module",
"category": "Rust Analyzer"
}, },
{ {
"command": "rust-analyzer.joinLines", "command": "rust-analyzer.joinLines",
"title": "rust-analyzer: join lines" "title": "Join lines",
"category": "Rust Analyzer"
}, },
{ {
"command": "rust-analyzer.run", "command": "rust-analyzer.run",
"title": "rust-analyzer: run" "title": "Run",
"category": "Rust Analyzer"
}, },
{ {
"command": "rust-analyzer.analyzerStatus", "command": "rust-analyzer.analyzerStatus",
"title": "rust-analyzer: status" "title": "Status",
"category": "Rust Analyzer"
}, },
{ {
"command": "rust-analyzer.collectGarbage", "command": "rust-analyzer.collectGarbage",
"title": "rust-analyzer: run gc" "title": "Run garbage collection",
"category": "Rust Analyzer"
} }
], ],
"keybindings": [ "keybindings": [