You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportconsttabFocusModeOnMsgNoKb=nls.localize("tabFocusModeOnMsgNoKb","Pressing Tab in the current editor will move focus to the next focusable element. The command {0} is currently not triggerable by a keybinding.");
21
21
exportconsttabFocusModeOffMsg=nls.localize("tabFocusModeOffMsg","Pressing Tab in the current editor will insert the tab character. Toggle this behavior by pressing {0}.");
22
22
exportconsttabFocusModeOffMsgNoKb=nls.localize("tabFocusModeOffMsgNoKb","Pressing Tab in the current editor will insert the tab character. The command {0} is currently not triggerable by a keybinding.");
23
-
exportconstopenDoc=nls.localize("openDoc","Press H now to open a browser window with more information related to editor accessibility.");
constreadMoreLink=provider.options.readMoreUrl ? localize("openDoc","\nPress H now to open a browser window with more information related to accessibility.\n") : '';
103
107
constdisableHelpHint=provider.options.isHelpMenu&&value ? localize('disable-help-hint','\nTo disable the `accessibility.verbosity` hint for this feature, press D now.\n') : '\n';
104
-
constfragment=provider.provideContent()+disableHelpHint+localize('exit-tip','Exit this menu via the Escape key.');
108
+
constfragment=provider.provideContent()+readMoreLink+disableHelpHint+localize('exit-tip','Exit this menu via the Escape key.');
105
109
106
110
this._getTextModel(URI.from({path: `accessible-view-${provider.id}`,scheme: 'accessible-view', fragment })).then((model)=>{
107
111
if(!model){
@@ -119,6 +123,10 @@ class AccessibleView extends Disposable {
content.push(this._descriptionForCommand(TerminalCommandId.OpenDetectedLink,localize('openDetectedLink','The Open Detected Link ({0}) command enables screen readers to easily open links found in the terminal.'),localize('openDetectedLinkNoKb','The Open Detected Link command enables screen readers to easily open links found in the terminal and is currently not triggerable by a keybinding.')));
76
80
content.push(this._descriptionForCommand(TerminalCommandId.NewWithProfile,localize('newWithProfile','The Create New Terminal (With Profile) ({0}) command allows for easy terminal creation using a specific profile.'),localize('newWithProfileNoKb','The Create New Terminal (With Profile) command allows for easy terminal creation using a specific profile and is currently not triggerable by a keybinding.')));
77
81
content.push(localize('accessibilitySettings','Access accessibility settings such as `terminal.integrated.tabFocusMode` via the Preferences: Open Accessibility Settings command.'));
78
-
content.push(localize('readMore','Read more about terminal accessibility https://code.visualstudio.com/docs/editor/accessibility#_terminal-accessibility'));
0 commit comments