monaco-editor-core
Version:
A browser based code editor
40 lines (39 loc) • 2.14 kB
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { alert } from '../../../../base/browser/ui/aria/aria.js';
import { TabFocus } from '../../../browser/config/tabFocus.js';
import * as nls from '../../../../nls.js';
import { Action2, registerAction2 } from '../../../../platform/actions/common/actions.js';
export class ToggleTabFocusModeAction extends Action2 {
static { this.ID = 'editor.action.toggleTabFocusMode'; }
constructor() {
super({
id: ToggleTabFocusModeAction.ID,
title: nls.localize2({ key: 'toggle.tabMovesFocus', comment: ['Turn on/off use of tab key for moving focus around VS Code'] }, 'Toggle Tab Key Moves Focus'),
precondition: undefined,
keybinding: {
primary: 2048 /* KeyMod.CtrlCmd */ | 43 /* KeyCode.KeyM */,
mac: { primary: 256 /* KeyMod.WinCtrl */ | 1024 /* KeyMod.Shift */ | 43 /* KeyCode.KeyM */ },
weight: 100 /* KeybindingWeight.EditorContrib */
},
metadata: {
description: nls.localize2('tabMovesFocusDescriptions', "Determines whether the tab key moves focus around the workbench or inserts the tab character in the current editor. This is also called tab trapping, tab navigation, or tab focus mode."),
},
f1: true
});
}
run() {
const oldValue = TabFocus.getTabFocusMode();
const newValue = !oldValue;
TabFocus.setTabFocusMode(newValue);
if (newValue) {
alert(nls.localize('toggle.tabMovesFocus.on', "Pressing Tab will now move focus to the next focusable element"));
}
else {
alert(nls.localize('toggle.tabMovesFocus.off', "Pressing Tab will now insert the tab character"));
}
}
}
registerAction2(ToggleTabFocusModeAction);