mirror of
https://github.com/We-Dont-Byte/Mind_Reader.git
synced 2024-11-15 03:35:59 +00:00
Merge pull request #5 from SingleSemesterSnobs/cal
Added hotkeys for 5 commands
This commit is contained in:
commit
9db476dd39
47
package.json
47
package.json
@ -48,7 +48,36 @@
|
||||
"title": "Select Theme"
|
||||
}
|
||||
],
|
||||
"keybindings": [
|
||||
{
|
||||
"command": "mind-reader.decreaseFontScale",
|
||||
"key": "numpad_subtract",
|
||||
"mac": ""
|
||||
},
|
||||
|
||||
{
|
||||
"command": "mind-reader.increaseFontScale",
|
||||
"key": "numpad_add",
|
||||
"mac": ""
|
||||
},
|
||||
|
||||
{
|
||||
"command": "mind-reader.increaseEditorScale",
|
||||
"key": "shift+numpad_add"
|
||||
},
|
||||
|
||||
{
|
||||
"command": "mind-reader.decreaseEditorScale",
|
||||
"key": "shift+numpad_subtract",
|
||||
"mac": ""
|
||||
},
|
||||
|
||||
{
|
||||
"command": "mind-reader.resetEditorScale",
|
||||
"key": "shift+enter",
|
||||
"mac": ""
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
"editor/context": [
|
||||
{
|
||||
@ -56,7 +85,6 @@
|
||||
"group": "mind-reader"
|
||||
}
|
||||
],
|
||||
|
||||
"mind-reader.editor.context": [
|
||||
{
|
||||
"command": "mind-reader.increaseEditorScale",
|
||||
@ -95,22 +123,23 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
"submenus": [
|
||||
{
|
||||
"id": "mind-reader.editor.context",
|
||||
"label": "Mind_Reader"
|
||||
}
|
||||
],
|
||||
|
||||
"configuration":{
|
||||
"configuration": {
|
||||
"title": "Mind_Reader",
|
||||
"properties": {
|
||||
"mindreader.productType": {
|
||||
"type":"string",
|
||||
"type": "string",
|
||||
"description": "Specifies the LEGO® product.",
|
||||
"default": "MINDSTORMS® EV3",
|
||||
"enum": ["MINDSTORMS® EV3", "SPIKE™ Prime"],
|
||||
"enum": [
|
||||
"MINDSTORMS® EV3",
|
||||
"SPIKE™ Prime"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"LEGO® MINDSTORMS® EV3 (31313)",
|
||||
"LEGO® Education SPIKE™ Prime Set (45678)"
|
||||
@ -120,7 +149,11 @@
|
||||
"type": "string",
|
||||
"description": "Specifies which screen reader to optimize for.",
|
||||
"default": "NVDA",
|
||||
"enum": ["NVDA", "Orca", "VoiceOver"],
|
||||
"enum": [
|
||||
"NVDA",
|
||||
"Orca",
|
||||
"VoiceOver"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"NonVisual Desktop Access (Windows)",
|
||||
"Orca (Linux)",
|
||||
|
Loading…
Reference in New Issue
Block a user