Skip to content

Commit b01fb0b

Browse files
committed
Add ctrl+p and ctrl+n to CommonKeybindings
1 parent 59fb847 commit b01fb0b

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/vs/base/common/keyCodes.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -492,10 +492,12 @@ export class CommonKeybindings {
492492
public static CTRLCMD_BACKSPACE: number = KeyMod.CtrlCmd | KeyCode.Backspace;
493493

494494
public static UP_ARROW: number = KeyCode.UpArrow;
495+
public static WINCTRL_P: number = KeyMod.WinCtrl | KeyCode.KEY_P;
495496
public static SHIFT_UP_ARROW: number = KeyMod.Shift | KeyCode.UpArrow;
496497
public static CTRLCMD_UP_ARROW: number = KeyMod.CtrlCmd | KeyCode.UpArrow;
497498

498499
public static DOWN_ARROW: number = KeyCode.DownArrow;
500+
public static WINCTRL_N: number = KeyMod.WinCtrl | KeyCode.KEY_N;
499501
public static SHIFT_DOWN_ARROW: number = KeyMod.Shift | KeyCode.DownArrow;
500502
public static CTRLCMD_DOWN_ARROW: number = KeyMod.CtrlCmd | KeyCode.DownArrow;
501503

0 commit comments

Comments
 (0)