Skip to content

Commit

Permalink
Merge pull request #208793 from microsoft/merogge/voice-conflict
Browse files Browse the repository at this point in the history
fix issue with terminal chat input focus
  • Loading branch information
meganrogge authored Mar 26, 2024
2 parents 38695f1 + 52d0176 commit 22f3839
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ registerActiveXtermAction({
title: localize2('focusTerminalInput', 'Focus Terminal Input'),
keybinding: {
primary: KeyMod.CtrlCmd | KeyCode.UpArrow,
when: TerminalChatContextKeys.focused,
secondary: [KeyMod.CtrlCmd | KeyCode.KeyI],
when: ContextKeyExpr.and(TerminalChatContextKeys.focused, CTX_INLINE_CHAT_FOCUSED.toNegated()),
weight: KeybindingWeight.WorkbenchContrib,
},
f1: true,
Expand Down

0 comments on commit 22f3839

Please sign in to comment.