File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
src/vs/workbench/contrib/accessibility/browser Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import { Registry } from 'vs/platform/registry/common/platform';
9
9
import { Command , MultiCommand } from 'vs/editor/browser/editorExtensions' ;
10
10
import { KeyCode , KeyMod } from 'vs/base/common/keyCodes' ;
11
11
import { KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry' ;
12
+ import { MenuId } from 'vs/platform/actions/common/actions' ;
12
13
13
14
export const enum AccessibilityVerbositySettingId {
14
15
Terminal = 'accessibility.verbosity.terminal' ,
@@ -77,7 +78,13 @@ export const AccessibilityHelpAction = registerCommand(new MultiCommand({
77
78
primary : KeyMod . Alt | KeyMod . Shift | KeyCode . F1 ,
78
79
secondary : [ KeyMod . Alt | KeyCode . F1 ]
79
80
}
80
- }
81
+ } ,
82
+ menuOpts : [ {
83
+ menuId : MenuId . CommandPalette ,
84
+ group : '' ,
85
+ title : localize ( 'editor.action.accessibilityHelp' , "Open Accessibility Help" ) ,
86
+ order : 1
87
+ } ] ,
81
88
} ) ) ;
82
89
83
90
@@ -91,5 +98,11 @@ export const AccessibilityViewAction = registerCommand(new MultiCommand({
91
98
primary : KeyMod . Alt | KeyMod . Shift | KeyCode . F1 ,
92
99
secondary : [ KeyMod . Alt | KeyCode . F1 ]
93
100
}
94
- }
101
+ } ,
102
+ menuOpts : [ {
103
+ menuId : MenuId . CommandPalette ,
104
+ group : '' ,
105
+ title : localize ( 'editor.action.accessibilityView' , "Open Accessibility View" ) ,
106
+ order : 1
107
+ } ] ,
95
108
} ) ) ;
You can’t perform that action at this time.
0 commit comments