We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59fb847 commit b01fb0bCopy full SHA for b01fb0b
1 file changed
src/vs/base/common/keyCodes.ts
@@ -492,10 +492,12 @@ export class CommonKeybindings {
492
public static CTRLCMD_BACKSPACE: number = KeyMod.CtrlCmd | KeyCode.Backspace;
493
494
public static UP_ARROW: number = KeyCode.UpArrow;
495
+ public static WINCTRL_P: number = KeyMod.WinCtrl | KeyCode.KEY_P;
496
public static SHIFT_UP_ARROW: number = KeyMod.Shift | KeyCode.UpArrow;
497
public static CTRLCMD_UP_ARROW: number = KeyMod.CtrlCmd | KeyCode.UpArrow;
498
499
public static DOWN_ARROW: number = KeyCode.DownArrow;
500
+ public static WINCTRL_N: number = KeyMod.WinCtrl | KeyCode.KEY_N;
501
public static SHIFT_DOWN_ARROW: number = KeyMod.Shift | KeyCode.DownArrow;
502
public static CTRLCMD_DOWN_ARROW: number = KeyMod.CtrlCmd | KeyCode.DownArrow;
503
0 commit comments