mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
Add ctrl+p and ctrl+n to CommonKeybindings
This commit is contained in:
@@ -492,10 +492,12 @@ export class CommonKeybindings {
|
||||
public static CTRLCMD_BACKSPACE: number = KeyMod.CtrlCmd | KeyCode.Backspace;
|
||||
|
||||
public static UP_ARROW: number = KeyCode.UpArrow;
|
||||
public static WINCTRL_P: number = KeyMod.WinCtrl | KeyCode.KEY_P;
|
||||
public static SHIFT_UP_ARROW: number = KeyMod.Shift | KeyCode.UpArrow;
|
||||
public static CTRLCMD_UP_ARROW: number = KeyMod.CtrlCmd | KeyCode.UpArrow;
|
||||
|
||||
public static DOWN_ARROW: number = KeyCode.DownArrow;
|
||||
public static WINCTRL_N: number = KeyMod.WinCtrl | KeyCode.KEY_N;
|
||||
public static SHIFT_DOWN_ARROW: number = KeyMod.Shift | KeyCode.DownArrow;
|
||||
public static CTRLCMD_DOWN_ARROW: number = KeyMod.CtrlCmd | KeyCode.DownArrow;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user