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(EditorLayoutTwoColumnsBottomAction,EditorLayoutTwoColumnsBottomAction.ID,EditorLayoutTwoColumnsBottomAction.LABEL),'View: Two Columns Bottom Editor Layout',category);
427
427
428
428
// Register Quick Editor Actions including built in quick navigate support for some
429
+
429
430
registry.registerWorkbenchAction(SyncActionDescriptor.create(QuickOpenPreviousRecentlyUsedEditorAction,QuickOpenPreviousRecentlyUsedEditorAction.ID,QuickOpenPreviousRecentlyUsedEditorAction.LABEL),'View: Quick Open Previous Recently Used Editor',category);
431
+
registry.registerWorkbenchAction(SyncActionDescriptor.create(QuickOpenLeastRecentlyUsedEditorAction,QuickOpenLeastRecentlyUsedEditorAction.ID,QuickOpenLeastRecentlyUsedEditorAction.LABEL),'View: Quick Open Least Recently Used Editor',category);
432
+
430
433
registry.registerWorkbenchAction(SyncActionDescriptor.create(QuickOpenPreviousRecentlyUsedEditorInGroupAction,QuickOpenPreviousRecentlyUsedEditorInGroupAction.ID,QuickOpenPreviousRecentlyUsedEditorInGroupAction.LABEL,{primary: KeyMod.CtrlCmd|KeyCode.Tab,mac: {primary: KeyMod.WinCtrl|KeyCode.Tab}}),'View: Quick Open Previous Recently Used Editor in Group',category);
434
+
registry.registerWorkbenchAction(SyncActionDescriptor.create(QuickOpenLeastRecentlyUsedEditorInGroupAction,QuickOpenLeastRecentlyUsedEditorInGroupAction.ID,QuickOpenLeastRecentlyUsedEditorInGroupAction.LABEL,{primary: KeyMod.CtrlCmd|KeyMod.Shift|KeyCode.Tab,mac: {primary: KeyMod.WinCtrl|KeyMod.Shift|KeyCode.Tab}}),'View: Quick Open Least Recently Used Editor in Group',category);
435
+
431
436
registry.registerWorkbenchAction(SyncActionDescriptor.create(QuickOpenPreviousEditorFromHistoryAction,QuickOpenPreviousEditorFromHistoryAction.ID,QuickOpenPreviousEditorFromHistoryAction.LABEL),'Quick Open Previous Editor from History');
0 commit comments