mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-28 23:58:23 +01:00
Merge pull request #188083 from microsoft/merogge/tabfoc
only apply terminal accessible buffer keybinding when terminal is focused
This commit is contained in:
+1
-1
@@ -92,7 +92,7 @@ registerTerminalAction({
|
||||
{
|
||||
primary: KeyMod.Shift | KeyCode.Tab,
|
||||
weight: KeybindingWeight.WorkbenchContrib,
|
||||
when: ContextKeyExpr.and(CONTEXT_ACCESSIBILITY_MODE_ENABLED, ContextKeyExpr.or(terminalTabFocusModeContextKey, TerminalContextKeys.accessibleBufferFocus.negate()))
|
||||
when: ContextKeyExpr.and(CONTEXT_ACCESSIBILITY_MODE_ENABLED, TerminalContextKeys.focus, ContextKeyExpr.or(terminalTabFocusModeContextKey, TerminalContextKeys.accessibleBufferFocus.negate()))
|
||||
}
|
||||
],
|
||||
run: async (c) => {
|
||||
|
||||
Reference in New Issue
Block a user