Skip to content

Commit 363dcf6

Browse files
committed
1 parent b126f6b commit 363dcf6

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/vs/editor/contrib/suggest/browser/suggestController.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -354,8 +354,8 @@ CommonEditorRegistry.registerEditorCommand(new SuggestCommand({
354354
weight: weight,
355355
kbExpr: EditorContextKeys.textFocus,
356356
primary: KeyCode.DownArrow,
357-
secondary: [KeyMod.Alt | KeyCode.DownArrow],
358-
mac: { primary: KeyCode.DownArrow, secondary: [KeyMod.Alt | KeyCode.DownArrow, KeyMod.WinCtrl | KeyCode.KEY_N] }
357+
secondary: [KeyMod.CtrlCmd | KeyCode.DownArrow],
358+
mac: { primary: KeyCode.DownArrow, secondary: [KeyMod.CtrlCmd | KeyCode.DownArrow, KeyMod.WinCtrl | KeyCode.KEY_N] }
359359
}
360360
}));
361361

@@ -367,7 +367,7 @@ CommonEditorRegistry.registerEditorCommand(new SuggestCommand({
367367
weight: weight,
368368
kbExpr: EditorContextKeys.textFocus,
369369
primary: KeyCode.PageDown,
370-
secondary: [KeyMod.Alt | KeyCode.PageDown]
370+
secondary: [KeyMod.CtrlCmd | KeyCode.PageDown]
371371
}
372372
}));
373373

@@ -385,8 +385,8 @@ CommonEditorRegistry.registerEditorCommand(new SuggestCommand({
385385
weight: weight,
386386
kbExpr: EditorContextKeys.textFocus,
387387
primary: KeyCode.UpArrow,
388-
secondary: [KeyMod.Alt | KeyCode.UpArrow],
389-
mac: { primary: KeyCode.UpArrow, secondary: [KeyMod.Alt | KeyCode.UpArrow, KeyMod.WinCtrl | KeyCode.KEY_P] }
388+
secondary: [KeyMod.CtrlCmd | KeyCode.UpArrow],
389+
mac: { primary: KeyCode.UpArrow, secondary: [KeyMod.CtrlCmd | KeyCode.UpArrow, KeyMod.WinCtrl | KeyCode.KEY_P] }
390390
}
391391
}));
392392

@@ -398,7 +398,7 @@ CommonEditorRegistry.registerEditorCommand(new SuggestCommand({
398398
weight: weight,
399399
kbExpr: EditorContextKeys.textFocus,
400400
primary: KeyCode.PageUp,
401-
secondary: [KeyMod.Alt | KeyCode.PageUp]
401+
secondary: [KeyMod.CtrlCmd | KeyCode.PageUp]
402402
}
403403
}));
404404

0 commit comments

Comments
 (0)