package.json:

- Remove duplicate entries
- Unify names of submenus according to Mind Reader naming conventions
- Add keybinds for things I accidentally only had in my User configuration (oops!)
This commit is contained in:
John 2022-05-07 22:00:34 -05:00
parent a9c43b1490
commit a8542c6c88

View File

@ -117,67 +117,27 @@
},
{
"command": "mind-reader.getLineNumber",
"title": "Get The Current Line Number"
},
{
"command": "mind-reader.getIndent",
"title": "Get The Number Of Line Indentations"
},
{
"command": "mind-reader.getLeadingSpaces",
"title": "Get The Number Of Leading Spaces"
},
{
"command": "mind-reader.selectLeadingWhitespace",
"title": "Select The Leading Whitespace"
},
{
"command": "mind-reader.getNumberOfSelectedLines",
"title": "Get The Number Of Selected Lines"
},
{
"command": "mind-reader.connectHub",
"title": "Connect LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.disconnectHub",
"title": "Disconnect LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.uploadCurrentFile",
"title": "Upload Current File to LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.runProgram",
"title": "Run a Program on the LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.stopExecution",
"title": "Stop Running Program on the LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.deleteProgram",
"title": "Delete a Program from the LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.uploadCurrentFile",
"title": "Upload Current File to the LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.getLeadingSpaces",
"title": "Get Leading Spaces",
"title": "Get The Current Line Number",
"category": "Mind Reader"
},
{
"command": "mind-reader.getLineNumber",
"title": "Get Line Number",
"command": "mind-reader.getIndent",
"title": "Get The Number Of Line Indentations",
"category": "Mind Reader"
},
{
"command": "mind-reader.getLeadingSpaces",
"title": "Get The Number Of Leading Spaces",
"category": "Mind Reader"
},
{
"command": "mind-reader.selectLeadingWhitespace",
"title": "Select The Leading Whitespace",
"category": "Mind Reader"
},
{
"command": "mind-reader.getNumberOfSelectedLines",
"title": "Get The Number Of Selected Lines",
"category": "Mind Reader"
},
{
@ -238,9 +198,44 @@
"command": "mind-reader.showCommands",
"title": "Show All Commands",
"category": "Mind Reader"
},
{
"command": "mind-reader.connectHub",
"title": "Connect a LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.disconnectHub",
"title": "Disconnect a LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.runProgram",
"title": "Run a Program on the LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.stopExecution",
"title": "Stop Running Program on the LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.deleteProgram",
"title": "Delete a Program from the LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
},
{
"command": "mind-reader.uploadCurrentFile",
"title": "Upload Current File to the LEGO SPIKE Prime Hub",
"category": "SPIKE Prime"
}
],
"keybindings": [
{
"command": "accessActions.focus",
"key": "Ctrl+Shift+/ Ctrl+Shift+/",
"mac": "Cmc+Shift+[Slash] Cmc+Shift+[Slash]"
},
{
"command": "editor.action.fontZoomOut",
"key": "Shift+Alt+z -",
@ -285,6 +280,16 @@
"command": "mind-reader.openKeybinds",
"key": "Ctrl+Shift+/ K",
"mac": "Cmd+Shift+[Slash] K"
},
{
"command": "mind-reader.getNumberOfSelectedLines",
"key": "Ctrl+Shift+/ N",
"mac": "Cmd+Shift+[Slash] N"
},
{
"command": "mind-reader.selectLeadingWhitespace",
"key": "Ctrl+Shift+/ W",
"mac": "Ctrl+Shift+[Slash] W"
}
],
"menus": {
@ -563,7 +568,7 @@
}
],
"views": {
"MindReader": [
"Mind-Reader": [
{
"id": "accessActions",
"name": "Access Actions",
@ -581,8 +586,8 @@
"viewsContainers": {
"activitybar": [
{
"id": "MindReader",
"title": "MindReader Actions",
"id": "Mind-Reader",
"title": "Mind Reader Actions",
"icon": "media/dep.svg"
}
]