Merge pull request #193708 from microsoft/merogge/mac-keybinding

for screen reader users, use `cmd+r` for mac `Run recent command`
This commit is contained in:
Megan Rogge
2023-09-21 10:04:36 -07:00
committed by GitHub

View File

@@ -365,7 +365,6 @@ export function registerTerminalActions() {
keybinding: [
{
primary: KeyMod.CtrlCmd | KeyCode.KeyR,
mac: { primary: KeyMod.WinCtrl | KeyCode.KeyR },
when: ContextKeyExpr.and(TerminalContextKeys.focus, CONTEXT_ACCESSIBILITY_MODE_ENABLED),
weight: KeybindingWeight.WorkbenchContrib
},