@@ -460,9 +460,9 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: editorCo
460460
461461// Editor Title Menu
462462MenuRegistry . appendMenuItem ( MenuId . EditorTitle , { command : { id : editorCommands . TOGGLE_DIFF_SIDE_BY_SIDE , title : nls . localize ( 'toggleInlineView' , "Toggle Inline View" ) } , group : '1_diff' , order : 10 , when : ContextKeyExpr . has ( 'isInDiffEditor' ) } ) ;
463- MenuRegistry . appendMenuItem ( MenuId . EditorTitle , { command : { id : editorCommands . SHOW_EDITORS_IN_GROUP , title : nls . localize ( 'showOpenedEditors' , "Show Opened Editors" ) } , group : '3_open' , order : 10 , when : ContextKeyExpr . has ( 'config.workbench.editor.showTabs' ) } ) ;
464- MenuRegistry . appendMenuItem ( MenuId . EditorTitle , { command : { id : editorCommands . CLOSE_EDITORS_IN_GROUP_COMMAND_ID , title : nls . localize ( 'closeAll' , "Close All" ) } , group : '5_close' , order : 10 , when : ContextKeyExpr . has ( 'config.workbench.editor.showTabs' ) } ) ;
465- MenuRegistry . appendMenuItem ( MenuId . EditorTitle , { command : { id : editorCommands . CLOSE_SAVED_EDITORS_COMMAND_ID , title : nls . localize ( 'closeAllSaved' , "Close Saved" ) } , group : '5_close' , order : 20 , when : ContextKeyExpr . has ( 'config.workbench.editor.showTabs' ) } ) ;
463+ MenuRegistry . appendMenuItem ( MenuId . EditorTitle , { command : { id : editorCommands . SHOW_EDITORS_IN_GROUP , title : nls . localize ( 'showOpenedEditors' , "Show Opened Editors" ) } , group : '3_open' , order : 10 } ) ;
464+ MenuRegistry . appendMenuItem ( MenuId . EditorTitle , { command : { id : editorCommands . CLOSE_EDITORS_IN_GROUP_COMMAND_ID , title : nls . localize ( 'closeAll' , "Close All" ) } , group : '5_close' , order : 10 } ) ;
465+ MenuRegistry . appendMenuItem ( MenuId . EditorTitle , { command : { id : editorCommands . CLOSE_SAVED_EDITORS_COMMAND_ID , title : nls . localize ( 'closeAllSaved' , "Close Saved" ) } , group : '5_close' , order : 20 } ) ;
466466MenuRegistry . appendMenuItem ( MenuId . EditorTitle , { command : { id : ReopenResourcesAction . ID , title : ReopenResourcesAction . LABEL } , group : '6_reopen' , order : 20 , when : ActiveEditorAvailableEditorIdsContext } ) ;
467467
468468interface IEditorToolItem { id : string ; title : string ; icon ?: { dark ?: URI ; light ?: URI ; } | ThemeIcon ; }
0 commit comments