Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Stop manually prefixing commands with category
Browse files Browse the repository at this point in the history
  • Loading branch information
paracycle committed Jul 13, 2023
1 parent 61ad9e5 commit 9994594
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,28 @@
"commands": [
{
"command": "rubyLsp.start",
"title": "Ruby LSP: Start"
"title": "Start",
"category": "Ruby LSP"
},
{
"command": "rubyLsp.restart",
"title": "Ruby LSP: Restart"
"title": "Restart",
"category": "Ruby LSP"
},
{
"command": "rubyLsp.stop",
"title": "Ruby LSP: Stop"
"title": "Stop",
"category": "Ruby LSP"
},
{
"command": "rubyLsp.update",
"title": "Ruby LSP: Update language server gem"
"title": "Update language server gem",
"category": "Ruby LSP"
},
{
"command": "rubyLsp.showSyntaxTree",
"title": "Ruby LSP: Show syntax tree"
"title": "Show syntax tree",
"category": "Ruby LSP"
}
],
"configuration": {
Expand Down

0 comments on commit 9994594

Please sign in to comment.