Skip to content

Commit 6750f6b

Browse files
committed
Clarify what commands are debug commands in VSCode
1 parent 6c3ab56 commit 6750f6b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

editors/code/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -100,22 +100,27 @@
100100
{
101101
"command": "rust-analyzer.syntaxTree",
102102
"title": "Show Syntax Tree",
103-
"category": "rust-analyzer"
103+
"category": "rust-analyzer (debug command)"
104104
},
105105
{
106106
"command": "rust-analyzer.viewHir",
107107
"title": "View Hir",
108-
"category": "rust-analyzer"
108+
"category": "rust-analyzer (debug command)"
109109
},
110110
{
111111
"command": "rust-analyzer.viewFileText",
112112
"title": "View File Text (as seen by the server)",
113-
"category": "rust-analyzer"
113+
"category": "rust-analyzer (debug command)"
114114
},
115115
{
116116
"command": "rust-analyzer.viewItemTree",
117117
"title": "Debug ItemTree",
118-
"category": "rust-analyzer"
118+
"category": "rust-analyzer (debug command)"
119+
},
120+
{
121+
"command": "rust-analyzer.shuffleCrateGraph",
122+
"title": "Shuffle Crate Graph",
123+
"category": "rust-analyzer (debug command)"
119124
},
120125
{
121126
"command": "rust-analyzer.viewCrateGraph",
@@ -177,11 +182,6 @@
177182
"title": "Memory Usage (Clears Database)",
178183
"category": "rust-analyzer"
179184
},
180-
{
181-
"command": "rust-analyzer.shuffleCrateGraph",
182-
"title": "Shuffle Crate Graph",
183-
"category": "rust-analyzer"
184-
},
185185
{
186186
"command": "rust-analyzer.reloadWorkspace",
187187
"title": "Reload workspace",

0 commit comments

Comments
 (0)