We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Y
N
1 parent ba80bf2 commit c00b75dCopy full SHA for c00b75d
src/vs/workbench/contrib/inlineChat/browser/inlineChatActions.ts
@@ -625,10 +625,10 @@ class KeepOrUndoSessionAction extends AbstractInline2ChatAction {
625
icon: _keep ? Codicon.check : Codicon.discard,
626
precondition: ContextKeyExpr.and(CTX_INLINE_CHAT_VISIBLE, ctxHasRequestInProgress.negate()),
627
keybinding: [{
628
- weight: KeybindingWeight.WorkbenchContrib,
+ weight: KeybindingWeight.WorkbenchContrib + 10, // win over new-window-action
629
primary: _keep
630
- ? KeyMod.CtrlCmd | KeyCode.Enter
631
- : KeyMod.CtrlCmd | KeyCode.Backspace
+ ? KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyY
+ : KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyN
632
}],
633
menu: [{
634
id: MENU_INLINE_CHAT_WIDGET_STATUS,
0 commit comments