about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLukas Wirth <lukastw97@gmail.com>2022-11-03 21:36:14 +0100
committerLukas Wirth <lukastw97@gmail.com>2022-11-03 21:36:14 +0100
commit6750f6b7c5b24e82c27ec611aa46e789bcd1b184 (patch)
tree845e4ebaef7ab529e8609fff76cef6c7f896a582
parent6c3ab563de1f9fc31b53d7ef43adc8d5e840839c (diff)
downloadrust-6750f6b7c5b24e82c27ec611aa46e789bcd1b184.tar.gz
rust-6750f6b7c5b24e82c27ec611aa46e789bcd1b184.zip
Clarify what commands are debug commands in VSCode
-rw-r--r--editors/code/package.json18
1 files changed, 9 insertions, 9 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 0ff66527451..6f9d6f07998 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -100,22 +100,27 @@
             {
                 "command": "rust-analyzer.syntaxTree",
                 "title": "Show Syntax Tree",
-                "category": "rust-analyzer"
+                "category": "rust-analyzer (debug command)"
             },
             {
                 "command": "rust-analyzer.viewHir",
                 "title": "View Hir",
-                "category": "rust-analyzer"
+                "category": "rust-analyzer (debug command)"
             },
             {
                 "command": "rust-analyzer.viewFileText",
                 "title": "View File Text (as seen by the server)",
-                "category": "rust-analyzer"
+                "category": "rust-analyzer (debug command)"
             },
             {
                 "command": "rust-analyzer.viewItemTree",
                 "title": "Debug ItemTree",
-                "category": "rust-analyzer"
+                "category": "rust-analyzer (debug command)"
+            },
+            {
+                "command": "rust-analyzer.shuffleCrateGraph",
+                "title": "Shuffle Crate Graph",
+                "category": "rust-analyzer (debug command)"
             },
             {
                 "command": "rust-analyzer.viewCrateGraph",
@@ -178,11 +183,6 @@
                 "category": "rust-analyzer"
             },
             {
-                "command": "rust-analyzer.shuffleCrateGraph",
-                "title": "Shuffle Crate Graph",
-                "category": "rust-analyzer"
-            },
-            {
                 "command": "rust-analyzer.reloadWorkspace",
                 "title": "Reload workspace",
                 "category": "rust-analyzer"