You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
registry.registerWorkbenchAction(SyncActionDescriptor.create(OpenNextEditor,OpenNextEditor.ID,OpenNextEditor.LABEL,{primary: KeyMod.CtrlCmd|KeyCode.PageDown,mac: {primary: KeyMod.CtrlCmd|KeyMod.Alt|KeyCode.RightArrow,secondary: [KeyMod.CtrlCmd|KeyMod.Shift|KeyCode.US_CLOSE_SQUARE_BRACKET]}}),'View: Open Next Editor',category);
354
354
registry.registerWorkbenchAction(SyncActionDescriptor.create(OpenPreviousEditor,OpenPreviousEditor.ID,OpenPreviousEditor.LABEL,{primary: KeyMod.CtrlCmd|KeyCode.PageUp,mac: {primary: KeyMod.CtrlCmd|KeyMod.Alt|KeyCode.LeftArrow,secondary: [KeyMod.CtrlCmd|KeyMod.Shift|KeyCode.US_OPEN_SQUARE_BRACKET]}}),'View: Open Previous Editor',category);
355
+
registry.registerWorkbenchAction(SyncActionDescriptor.create(OpenNextEditorInGroup,OpenNextEditorInGroup.ID,OpenNextEditorInGroup.LABEL,{primary: KeyChord(KeyMod.CtrlCmd|KeyCode.KEY_K,KeyMod.CtrlCmd|KeyCode.PageDown),mac: {primary: KeyChord(KeyMod.CtrlCmd|KeyCode.KEY_K,KeyMod.CtrlCmd|KeyMod.Alt|KeyCode.RightArrow)}}),'View: Open Next Editor in Group',category);
356
+
registry.registerWorkbenchAction(SyncActionDescriptor.create(OpenPreviousEditorInGroup,OpenPreviousEditorInGroup.ID,OpenPreviousEditorInGroup.LABEL,{primary: KeyChord(KeyMod.CtrlCmd|KeyCode.KEY_K,KeyMod.CtrlCmd|KeyCode.PageUp),mac: {primary: KeyChord(KeyMod.CtrlCmd|KeyCode.KEY_K,KeyMod.CtrlCmd|KeyMod.Alt|KeyCode.LeftArrow)}}),'View: Open Previous Editor in Group',category);
355
357
registry.registerWorkbenchAction(SyncActionDescriptor.create(OpenNextRecentlyUsedEditorAction,OpenNextRecentlyUsedEditorAction.ID,OpenNextRecentlyUsedEditorAction.LABEL),'View: Open Next Recently Used Editor',category);
356
358
registry.registerWorkbenchAction(SyncActionDescriptor.create(OpenPreviousRecentlyUsedEditorAction,OpenPreviousRecentlyUsedEditorAction.ID,OpenPreviousRecentlyUsedEditorAction.LABEL),'View: Open Previous Recently Used Editor',category);
357
-
registry.registerWorkbenchAction(SyncActionDescriptor.create(OpenNextEditorInGroup,OpenNextEditorInGroup.ID,OpenNextEditorInGroup.LABEL),'View: Open Next Editor in Group',category);
358
-
registry.registerWorkbenchAction(SyncActionDescriptor.create(OpenPreviousEditorInGroup,OpenPreviousEditorInGroup.ID,OpenPreviousEditorInGroup.LABEL),'View: Open Previous Editor in Group',category);
359
359
registry.registerWorkbenchAction(SyncActionDescriptor.create(OpenNextRecentlyUsedEditorInGroupAction,OpenNextRecentlyUsedEditorInGroupAction.ID,OpenNextRecentlyUsedEditorInGroupAction.LABEL),'View: Open Next Recently Used Editor In Group',category);
360
360
registry.registerWorkbenchAction(SyncActionDescriptor.create(OpenPreviousRecentlyUsedEditorInGroupAction,OpenPreviousRecentlyUsedEditorInGroupAction.ID,OpenPreviousRecentlyUsedEditorInGroupAction.LABEL),'View: Open Previous Recently Used Editor In Group',category);
361
361
registry.registerWorkbenchAction(SyncActionDescriptor.create(OpenFirstEditorInGroup,OpenFirstEditorInGroup.ID,OpenFirstEditorInGroup.LABEL),'View: Open First Editor in Group',category);
0 commit comments