Skip to content

Commit 70e94ff

Browse files
Have linux's keybinding include alt to not break format document (microsoft#185828)
Fixes microsoft#185595
1 parent 9e0f5fb commit 70e94ff

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/vs/workbench/contrib/chat/browser/actions/chatQuickInputActions.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ class AskQuickQuestionAction extends Action2 {
4949
category: CHAT_CATEGORY,
5050
keybinding: {
5151
weight: KeybindingWeight.WorkbenchContrib,
52-
primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyI
52+
primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyI,
53+
linux: {
54+
primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyMod.Alt | KeyCode.KeyI
55+
}
5356
}
5457
});
5558
}

0 commit comments

Comments
 (0)