@@ -130,7 +130,7 @@ function appendSaveConflictEditorTitleAction(id: string, title: string, iconClas
130130 MenuRegistry . appendMenuItem ( MenuId . EditorTitle , {
131131 command : { id, title, iconClass } ,
132132 when : ContextKeyExpr . equals ( CONFLICT_RESOLUTION_CONTEXT , true ) ,
133- group : '2_navigation ' ,
133+ group : 'navigation ' ,
134134 order
135135 } ) ;
136136}
@@ -142,7 +142,7 @@ const openToSideCommand = {
142142 title : nls . localize ( 'openToSide' , "Open to the Side" )
143143} ;
144144MenuRegistry . appendMenuItem ( MenuId . OpenEditorsContext , {
145- group : '2_navigation ' ,
145+ group : 'navigation ' ,
146146 order : 10 ,
147147 command : openToSideCommand ,
148148 when : ResourceContextKey . HasResource
@@ -153,7 +153,7 @@ const revealInOsCommand = {
153153 title : isWindows ? nls . localize ( 'revealInWindows' , "Reveal in Explorer" ) : isMacintosh ? nls . localize ( 'revealInMac' , "Reveal in Finder" ) : nls . localize ( 'openContainer' , "Open Containing Folder" )
154154} ;
155155MenuRegistry . appendMenuItem ( MenuId . OpenEditorsContext , {
156- group : '2_navigation ' ,
156+ group : 'navigation ' ,
157157 order : 20 ,
158158 command : revealInOsCommand ,
159159 when : ResourceContextKey . Scheme . isEqualTo ( 'file' )
@@ -164,7 +164,7 @@ const copyPathCommand = {
164164 title : nls . localize ( 'copyPath' , "Copy Path" )
165165} ;
166166MenuRegistry . appendMenuItem ( MenuId . OpenEditorsContext , {
167- group : '2_navigation ' ,
167+ group : 'navigation ' ,
168168 order : 40 ,
169169 command : copyPathCommand ,
170170 when : ResourceContextKey . HasResource
@@ -281,7 +281,7 @@ MenuRegistry.appendMenuItem(MenuId.OpenEditorsContext, {
281281// Menu registration - explorer
282282
283283MenuRegistry . appendMenuItem ( MenuId . ExplorerContext , {
284- group : '1_new ' ,
284+ group : 'navigation ' ,
285285 order : 4 ,
286286 command : {
287287 id : NEW_FILE_COMMAND_ID ,
@@ -291,7 +291,7 @@ MenuRegistry.appendMenuItem(MenuId.ExplorerContext, {
291291} ) ;
292292
293293MenuRegistry . appendMenuItem ( MenuId . ExplorerContext , {
294- group : '1_new ' ,
294+ group : 'navigation ' ,
295295 order : 6 ,
296296 command : {
297297 id : NEW_FOLDER_COMMAND_ID ,
@@ -301,14 +301,14 @@ MenuRegistry.appendMenuItem(MenuId.ExplorerContext, {
301301} ) ;
302302
303303MenuRegistry . appendMenuItem ( MenuId . ExplorerContext , {
304- group : '2_navigation ' ,
304+ group : 'navigation ' ,
305305 order : 10 ,
306306 command : openToSideCommand ,
307307 when : ContextKeyExpr . and ( ResourceContextKey . Scheme . isEqualTo ( 'file' ) , ExplorerFolderContext . toNegated ( ) )
308308} ) ;
309309
310310MenuRegistry . appendMenuItem ( MenuId . ExplorerContext , {
311- group : '2_navigation ' ,
311+ group : 'navigation ' ,
312312 order : 20 ,
313313 command : revealInOsCommand ,
314314 when : ResourceContextKey . HasResource
0 commit comments