Skip to content

Commit 2692ae4

Browse files
author
Justin Chen
committed
added shortcuts for quickfix menu
1 parent b2dff01 commit 2692ae4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/editor/contrib/codeAction/browser/codeActionCommands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ registerEditorCommand(new CodeActionContribution({
536536
kbOpts: {
537537
weight: weight + 100000,
538538
primary: KeyCode.UpArrow,
539-
secondary: [KeyMod.CtrlCmd | KeyCode.UpArrow],
539+
secondary: [KeyMod.CtrlCmd | KeyCode.KeyK],
540540
}
541541
}));
542542

@@ -549,7 +549,7 @@ registerEditorCommand(new CodeActionContribution({
549549
kbOpts: {
550550
weight: weight + 100000,
551551
primary: KeyCode.DownArrow,
552-
secondary: [KeyMod.CtrlCmd | KeyCode.DownArrow],
552+
secondary: [KeyMod.CtrlCmd | KeyCode.KeyJ],
553553
}
554554
}));
555555

0 commit comments

Comments
 (0)