Skip to content

Commit 50c1b46

Browse files
author
mergerepo
committed
Merge remote branch 'origin/master' into edge
(no-precommit-check no-tn-check)
2 parents aa9b344 + 39d703c commit 50c1b46

File tree

1 file changed

+25
-6
lines changed

1 file changed

+25
-6
lines changed

integration/vscode/ada/package.json

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@
99
"vscode": "^1.64.2"
1010
},
1111
"categories": [
12-
"Programming Languages"
12+
"Programming Languages",
13+
"Extension Packs"
1314
],
15+
"extensionPack": ["webfreak.debug"],
1416
"activationEvents": [
1517
"onLanguage:ada",
1618
"onLanguage:gpr",
@@ -417,20 +419,37 @@
417419
"commands": [
418420
{
419421
"command": "ada.otherFile",
420-
"title": "Go to other Ada file"
422+
"title": "Ada: Go to other file"
421423
},
422424
{
423425
"command": "ada.subprogramBox",
424-
"title": "Add subprogram box"
426+
"title": "Ada: Add subprogram box"
425427
}
426428
],
427429
"keybindings": [
428430
{
429431
"command": "ada.otherFile",
430-
"key": "Alt+O",
431-
"when": "editorLangId == 'ada' && editorTextFocus"
432+
"key": "alt+O",
433+
"when": "editorLangId == ada && editorTextFocus"
434+
},
435+
{
436+
"command": "ada.subprogramBox",
437+
"key": "alt+shift+B",
438+
"when": "editorLangId == ada && editorTextFocus"
432439
}
433-
]
440+
],
441+
"menus": {
442+
"commandPalette": [
443+
{
444+
"command": "ada.otherFile",
445+
"when": "editorLangId == ada"
446+
},
447+
{
448+
"command": "ada.subprogramBox",
449+
"when": "editorLangId == ada"
450+
}
451+
]
452+
}
434453
},
435454
"devDependencies": {
436455
"@types/glob": "7.2.0",

0 commit comments

Comments
 (0)