@codingame/monaco-vscode-view-common-service-override 28.4.1 → 29.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/package.json +3 -3
  2. package/vscode/src/vs/workbench/api/browser/viewsExtensionPoint.js +59 -59
  3. package/vscode/src/vs/workbench/browser/actions/helpActions.js +20 -20
  4. package/vscode/src/vs/workbench/browser/actions/listCommands.js +3 -3
  5. package/vscode/src/vs/workbench/browser/actions/navigationActions.js +6 -6
  6. package/vscode/src/vs/workbench/browser/parts/editor/editor.contribution.js +180 -169
  7. package/vscode/src/vs/workbench/browser/parts/editor/editorConfiguration.js +8 -8
  8. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchy.contribution.js +12 -12
  9. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyPeek.js +3 -3
  10. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyTree.js +3 -3
  11. package/vscode/src/vs/workbench/contrib/customEditor/common/contributedCustomEditors.js +1 -1
  12. package/vscode/src/vs/workbench/contrib/customEditor/common/customEditor.js +1 -1
  13. package/vscode/src/vs/workbench/contrib/customEditor/common/extensionPoint.js +10 -10
  14. package/vscode/src/vs/workbench/contrib/languageStatus/browser/languageStatus.js +7 -7
  15. package/vscode/src/vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution.js +8 -8
  16. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.js +29 -29
  17. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/devCommands.js +14 -14
  18. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution.js +2 -2
  19. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorAccessibilityHelp.js +5 -5
  20. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/colors.js +13 -13
  21. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/conflictActions.js +20 -20
  22. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView.js +3 -3
  23. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView.js +10 -10
  24. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView.js +3 -3
  25. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/mergeEditor.js +2 -2
  26. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/viewModel.js +1 -1
  27. package/vscode/src/vs/workbench/contrib/preferences/browser/keyboardLayoutPicker.js +12 -12
  28. package/vscode/src/vs/workbench/contrib/sash/browser/sash.contribution.js +2 -2
  29. package/vscode/src/vs/workbench/contrib/scrollLocking/browser/scrollLocking.js +7 -7
  30. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchy.contribution.js +10 -10
  31. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyPeek.js +3 -3
  32. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyTree.js +3 -3
  33. package/vscode/src/vs/workbench/contrib/webview/browser/webviewElement.js +1 -1
  34. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewCommands.js +5 -5
  35. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution.js +1 -1
  36. package/vscode/src/vs/workbench/services/editor/browser/editorResolverService.js +8 -8
  37. package/vscode/src/vs/workbench/services/history/browser/historyService.js +9 -9
  38. package/vscode/src/vs/workbench/services/progress/browser/progressService.js +7 -7
  39. package/vscode/src/vs/workbench/services/views/browser/viewDescriptorService.js +5 -5
  40. package/vscode/src/vs/workbench/services/views/browser/viewsService.js +9 -9
  41. package/vscode/src/vs/workbench/services/views/common/viewContainerModel.d.ts +1 -0
  42. package/vscode/src/vs/workbench/services/views/common/viewContainerModel.js +3 -0
@@ -39,19 +39,19 @@ import { registerEditorFontConfigurations } from '@codingame/monaco-vscode-api/v
39
39
  import '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/editor/editor.contribution._autosave';
40
40
 
41
41
  ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
42
- EditorPaneDescriptor.create(TextResourceEditor, TextResourceEditor.ID, ( localize(3169, "Text Editor"))),
42
+ EditorPaneDescriptor.create(TextResourceEditor, TextResourceEditor.ID, ( localize(3177, "Text Editor"))),
43
43
  [( new SyncDescriptor(UntitledTextEditorInput)), ( new SyncDescriptor(TextResourceEditorInput))]
44
44
  );
45
45
  ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
46
- EditorPaneDescriptor.create(TextDiffEditor, TextDiffEditor.ID, ( localize(3170, "Text Diff Editor"))),
46
+ EditorPaneDescriptor.create(TextDiffEditor, TextDiffEditor.ID, ( localize(3178, "Text Diff Editor"))),
47
47
  [( new SyncDescriptor(DiffEditorInput))]
48
48
  );
49
49
  ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
50
- EditorPaneDescriptor.create(BinaryResourceDiffEditor, BinaryResourceDiffEditor.ID, ( localize(3171, "Binary Diff Editor"))),
50
+ EditorPaneDescriptor.create(BinaryResourceDiffEditor, BinaryResourceDiffEditor.ID, ( localize(3179, "Binary Diff Editor"))),
51
51
  [( new SyncDescriptor(DiffEditorInput))]
52
52
  );
53
53
  ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
54
- EditorPaneDescriptor.create(SideBySideEditor, SideBySideEditor.ID, ( localize(3172, "Side by Side Editor"))),
54
+ EditorPaneDescriptor.create(SideBySideEditor, SideBySideEditor.ID, ( localize(3180, "Side by Side Editor"))),
55
55
  [( new SyncDescriptor(SideBySideEditorInput))]
56
56
  );
57
57
  ( Registry.as(EditorExtensions.EditorFactory)).registerEditorSerializer(UntitledTextEditorInput.ID, UntitledTextEditorInputSerializer);
@@ -79,9 +79,9 @@ quickAccessRegistry.registerQuickAccessProvider({
79
79
  ctor: ActiveGroupEditorsByMostRecentlyUsedQuickAccess,
80
80
  prefix: ActiveGroupEditorsByMostRecentlyUsedQuickAccess.PREFIX,
81
81
  contextKey: editorPickerContextKey,
82
- placeholder: ( localize(3173, "Type the name of an editor to open it.")),
82
+ placeholder: ( localize(3181, "Type the name of an editor to open it.")),
83
83
  helpEntries: [{
84
- description: ( localize(3174, "Show Editors in Active Group by Most Recently Used")),
84
+ description: ( localize(3182, "Show Editors in Active Group by Most Recently Used")),
85
85
  commandId: ShowEditorsInActiveGroupByMostRecentlyUsedAction.ID
86
86
  }]
87
87
  });
@@ -89,9 +89,9 @@ quickAccessRegistry.registerQuickAccessProvider({
89
89
  ctor: AllEditorsByAppearanceQuickAccess,
90
90
  prefix: AllEditorsByAppearanceQuickAccess.PREFIX,
91
91
  contextKey: editorPickerContextKey,
92
- placeholder: ( localize(3173, "Type the name of an editor to open it.")),
92
+ placeholder: ( localize(3181, "Type the name of an editor to open it.")),
93
93
  helpEntries: [{
94
- description: ( localize(3175, "Show All Opened Editors By Appearance")),
94
+ description: ( localize(3183, "Show All Opened Editors By Appearance")),
95
95
  commandId: ShowAllEditorsByAppearanceAction.ID
96
96
  }]
97
97
  });
@@ -99,9 +99,9 @@ quickAccessRegistry.registerQuickAccessProvider({
99
99
  ctor: AllEditorsByMostRecentlyUsedQuickAccess,
100
100
  prefix: AllEditorsByMostRecentlyUsedQuickAccess.PREFIX,
101
101
  contextKey: editorPickerContextKey,
102
- placeholder: ( localize(3173, "Type the name of an editor to open it.")),
102
+ placeholder: ( localize(3181, "Type the name of an editor to open it.")),
103
103
  helpEntries: [{
104
- description: ( localize(3176, "Show All Opened Editors By Most Recently Used")),
104
+ description: ( localize(3184, "Show All Opened Editors By Most Recently Used")),
105
105
  commandId: ShowAllEditorsByMostRecentlyUsedAction.ID
106
106
  }]
107
107
  });
@@ -269,7 +269,7 @@ if (isMacintosh) {
269
269
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
270
270
  command: {
271
271
  id: LOCK_GROUP_COMMAND_ID,
272
- title: ( localize(3177, "Lock Group")),
272
+ title: ( localize(3185, "Lock Group")),
273
273
  icon: Codicon.unlock
274
274
  },
275
275
  group: "navigation",
@@ -279,7 +279,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
279
279
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
280
280
  command: {
281
281
  id: UNLOCK_GROUP_COMMAND_ID,
282
- title: ( localize(3178, "Unlock Group")),
282
+ title: ( localize(3186, "Unlock Group")),
283
283
  icon: Codicon.lock,
284
284
  toggled: ContextKeyExpr.true()
285
285
  },
@@ -290,7 +290,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
290
290
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
291
291
  command: {
292
292
  id: CLOSE_EDITOR_GROUP_COMMAND_ID,
293
- title: ( localize(3179, "Close Group")),
293
+ title: ( localize(3187, "Close Group")),
294
294
  icon: Codicon.close
295
295
  },
296
296
  group: "navigation",
@@ -300,7 +300,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
300
300
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
301
301
  command: {
302
302
  id: SPLIT_EDITOR_UP,
303
- title: ( localize(3180, "Split Up"))
303
+ title: ( localize(3188, "Split Up"))
304
304
  },
305
305
  group: "2_split",
306
306
  order: 10
@@ -308,7 +308,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
308
308
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
309
309
  command: {
310
310
  id: SPLIT_EDITOR_DOWN,
311
- title: ( localize(3181, "Split Down"))
311
+ title: ( localize(3189, "Split Down"))
312
312
  },
313
313
  group: "2_split",
314
314
  order: 20
@@ -316,7 +316,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
316
316
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
317
317
  command: {
318
318
  id: SPLIT_EDITOR_LEFT,
319
- title: ( localize(3182, "Split Left"))
319
+ title: ( localize(3190, "Split Left"))
320
320
  },
321
321
  group: "2_split",
322
322
  order: 30
@@ -324,7 +324,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
324
324
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
325
325
  command: {
326
326
  id: SPLIT_EDITOR_RIGHT,
327
- title: ( localize(3183, "Split Right"))
327
+ title: ( localize(3191, "Split Right"))
328
328
  },
329
329
  group: "2_split",
330
330
  order: 40
@@ -332,7 +332,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
332
332
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
333
333
  command: {
334
334
  id: NEW_EMPTY_EDITOR_WINDOW_COMMAND_ID,
335
- title: ( localize(3184, "New Window"))
335
+ title: ( localize(3192, "New Window"))
336
336
  },
337
337
  group: "3_window",
338
338
  order: 10
@@ -340,7 +340,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
340
340
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
341
341
  command: {
342
342
  id: TOGGLE_LOCK_GROUP_COMMAND_ID,
343
- title: ( localize(3185, "Lock Group")),
343
+ title: ( localize(3193, "Lock Group")),
344
344
  toggled: ActiveEditorGroupLockedContext
345
345
  },
346
346
  group: "4_lock",
@@ -350,7 +350,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
350
350
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
351
351
  command: {
352
352
  id: CLOSE_EDITOR_GROUP_COMMAND_ID,
353
- title: ( localize(3186, "Close"))
353
+ title: ( localize(3194, "Close"))
354
354
  },
355
355
  group: "5_close",
356
356
  order: 10,
@@ -359,7 +359,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
359
359
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
360
360
  command: {
361
361
  id: SPLIT_EDITOR_UP,
362
- title: ( localize(3180, "Split Up"))
362
+ title: ( localize(3188, "Split Up"))
363
363
  },
364
364
  group: "2_split",
365
365
  order: 10
@@ -367,7 +367,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
367
367
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
368
368
  command: {
369
369
  id: SPLIT_EDITOR_DOWN,
370
- title: ( localize(3181, "Split Down"))
370
+ title: ( localize(3189, "Split Down"))
371
371
  },
372
372
  group: "2_split",
373
373
  order: 20
@@ -375,7 +375,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
375
375
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
376
376
  command: {
377
377
  id: SPLIT_EDITOR_LEFT,
378
- title: ( localize(3182, "Split Left"))
378
+ title: ( localize(3190, "Split Left"))
379
379
  },
380
380
  group: "2_split",
381
381
  order: 30
@@ -383,7 +383,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
383
383
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
384
384
  command: {
385
385
  id: SPLIT_EDITOR_RIGHT,
386
- title: ( localize(3183, "Split Right"))
386
+ title: ( localize(3191, "Split Right"))
387
387
  },
388
388
  group: "2_split",
389
389
  order: 40
@@ -391,7 +391,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
391
391
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
392
392
  command: {
393
393
  id: MOVE_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID,
394
- title: ( localize(3187, "Move into New Window"))
394
+ title: ( localize(3195, "Move into New Window"))
395
395
  },
396
396
  group: "3_window",
397
397
  order: 10
@@ -399,14 +399,14 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
399
399
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
400
400
  command: {
401
401
  id: COPY_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID,
402
- title: ( localize(3188, "Copy into New Window"))
402
+ title: ( localize(3196, "Copy into New Window"))
403
403
  },
404
404
  group: "3_window",
405
405
  order: 20
406
406
  });
407
407
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
408
408
  submenu: MenuId.EditorTabsBarShowTabsSubmenu,
409
- title: ( localize(3189, "Tab Bar")),
409
+ title: ( localize(3197, "Tab Bar")),
410
410
  group: "4_config",
411
411
  order: 10,
412
412
  when: ( InEditorZenModeContext.negate())
@@ -414,7 +414,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
414
414
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
415
415
  command: {
416
416
  id: ShowMultipleEditorTabsAction.ID,
417
- title: ( localize(3190, "Multiple Tabs")),
417
+ title: ( localize(3198, "Multiple Tabs")),
418
418
  toggled: ( ContextKeyExpr.equals("config.workbench.editor.showTabs", "multiple"))
419
419
  },
420
420
  group: "1_config",
@@ -423,7 +423,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
423
423
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
424
424
  command: {
425
425
  id: ShowSingleEditorTabAction.ID,
426
- title: ( localize(3191, "Single Tab")),
426
+ title: ( localize(3199, "Single Tab")),
427
427
  toggled: ( ContextKeyExpr.equals("config.workbench.editor.showTabs", "single"))
428
428
  },
429
429
  group: "1_config",
@@ -432,7 +432,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
432
432
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
433
433
  command: {
434
434
  id: HideEditorTabsAction.ID,
435
- title: ( localize(3192, "Hidden")),
435
+ title: ( localize(3200, "Hidden")),
436
436
  toggled: ( ContextKeyExpr.equals("config.workbench.editor.showTabs", "none"))
437
437
  },
438
438
  group: "1_config",
@@ -440,7 +440,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
440
440
  });
441
441
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
442
442
  submenu: MenuId.EditorTabsBarShowTabsZenModeSubmenu,
443
- title: ( localize(3189, "Tab Bar")),
443
+ title: ( localize(3197, "Tab Bar")),
444
444
  group: "4_config",
445
445
  order: 10,
446
446
  when: InEditorZenModeContext
@@ -448,7 +448,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
448
448
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
449
449
  command: {
450
450
  id: ZenShowMultipleEditorTabsAction.ID,
451
- title: ( localize(3190, "Multiple Tabs")),
451
+ title: ( localize(3198, "Multiple Tabs")),
452
452
  toggled: ( ContextKeyExpr.equals("config.zenMode.showTabs", "multiple"))
453
453
  },
454
454
  group: "1_config",
@@ -457,7 +457,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
457
457
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
458
458
  command: {
459
459
  id: ZenShowSingleEditorTabAction.ID,
460
- title: ( localize(3191, "Single Tab")),
460
+ title: ( localize(3199, "Single Tab")),
461
461
  toggled: ( ContextKeyExpr.equals("config.zenMode.showTabs", "single"))
462
462
  },
463
463
  group: "1_config",
@@ -466,7 +466,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
466
466
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
467
467
  command: {
468
468
  id: ZenHideEditorTabsAction.ID,
469
- title: ( localize(3192, "Hidden")),
469
+ title: ( localize(3200, "Hidden")),
470
470
  toggled: ( ContextKeyExpr.equals("config.zenMode.showTabs", "none"))
471
471
  },
472
472
  group: "1_config",
@@ -474,14 +474,14 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
474
474
  });
475
475
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
476
476
  submenu: MenuId.EditorActionsPositionSubmenu,
477
- title: ( localize(3193, "Editor Actions Position")),
477
+ title: ( localize(3201, "Editor Actions Position")),
478
478
  group: "4_config",
479
479
  order: 20
480
480
  });
481
481
  MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
482
482
  command: {
483
483
  id: EditorActionsDefaultAction.ID,
484
- title: ( localize(3189, "Tab Bar")),
484
+ title: ( localize(3197, "Tab Bar")),
485
485
  toggled: ( ContextKeyExpr.equals("config.workbench.editor.editorActionsLocation", "default"))
486
486
  },
487
487
  group: "1_config",
@@ -491,7 +491,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
491
491
  MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
492
492
  command: {
493
493
  id: EditorActionsTitleBarAction.ID,
494
- title: ( localize(3194, "Title Bar")),
494
+ title: ( localize(3202, "Title Bar")),
495
495
  toggled: ( ContextKeyExpr.or(( ContextKeyExpr.equals("config.workbench.editor.editorActionsLocation", "titleBar")), ( ContextKeyExpr.and(( ContextKeyExpr.equals("config.workbench.editor.showTabs", "none")), ( ContextKeyExpr.equals("config.workbench.editor.editorActionsLocation", "default"))))))
496
496
  },
497
497
  group: "1_config",
@@ -500,7 +500,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
500
500
  MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
501
501
  command: {
502
502
  id: HideEditorActionsAction.ID,
503
- title: ( localize(3195, "Hidden")),
503
+ title: ( localize(3203, "Hidden")),
504
504
  toggled: ( ContextKeyExpr.equals("config.workbench.editor.editorActionsLocation", "hidden"))
505
505
  },
506
506
  group: "1_config",
@@ -509,7 +509,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
509
509
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
510
510
  command: {
511
511
  id: ConfigureEditorTabsAction.ID,
512
- title: ( localize(3196, "Configure Tabs"))
512
+ title: ( localize(3204, "Configure Tabs"))
513
513
  },
514
514
  group: "9_configure",
515
515
  order: 10
@@ -517,7 +517,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
517
517
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
518
518
  command: {
519
519
  id: CLOSE_EDITOR_COMMAND_ID,
520
- title: ( localize(3186, "Close"))
520
+ title: ( localize(3194, "Close"))
521
521
  },
522
522
  group: "1_close",
523
523
  order: 10
@@ -525,7 +525,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
525
525
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
526
526
  command: {
527
527
  id: CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID,
528
- title: ( localize(3197, "Close Others")),
528
+ title: ( localize(3205, "Close Others")),
529
529
  precondition: ( EditorGroupEditorsCountContext.notEqualsTo("1"))
530
530
  },
531
531
  group: "1_close",
@@ -534,7 +534,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
534
534
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
535
535
  command: {
536
536
  id: CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID,
537
- title: ( localize(3198, "Close to the Right")),
537
+ title: ( localize(3206, "Close to the Right")),
538
538
  precondition: ( ContextKeyExpr.and(( ActiveEditorLastInGroupContext.toNegated()), ( MultipleEditorsSelectedInGroupContext.negate())))
539
539
  },
540
540
  group: "1_close",
@@ -544,7 +544,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
544
544
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
545
545
  command: {
546
546
  id: CLOSE_SAVED_EDITORS_COMMAND_ID,
547
- title: ( localize(3199, "Close Saved"))
547
+ title: ( localize(3207, "Close Saved"))
548
548
  },
549
549
  group: "1_close",
550
550
  order: 40
@@ -552,7 +552,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
552
552
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
553
553
  command: {
554
554
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
555
- title: ( localize(3200, "Close All"))
555
+ title: ( localize(3208, "Close All"))
556
556
  },
557
557
  group: "1_close",
558
558
  order: 50
@@ -560,7 +560,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
560
560
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
561
561
  command: {
562
562
  id: REOPEN_WITH_COMMAND_ID,
563
- title: ( localize(3201, "Reopen Editor With..."))
563
+ title: ( localize(3209, "Reopen Editor With..."))
564
564
  },
565
565
  group: "1_open",
566
566
  order: 10,
@@ -569,7 +569,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
569
569
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
570
570
  command: {
571
571
  id: KEEP_EDITOR_COMMAND_ID,
572
- title: ( localize(3202, "Keep Open")),
572
+ title: ( localize(3210, "Keep Open")),
573
573
  precondition: ( ActiveEditorPinnedContext.toNegated())
574
574
  },
575
575
  group: "3_preview",
@@ -579,7 +579,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
579
579
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
580
580
  command: {
581
581
  id: PIN_EDITOR_COMMAND_ID,
582
- title: ( localize(3203, "Pin"))
582
+ title: ( localize(3211, "Pin"))
583
583
  },
584
584
  group: "3_preview",
585
585
  order: 20,
@@ -588,7 +588,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
588
588
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
589
589
  command: {
590
590
  id: UNPIN_EDITOR_COMMAND_ID,
591
- title: ( localize(3204, "Unpin"))
591
+ title: ( localize(3212, "Unpin"))
592
592
  },
593
593
  group: "3_preview",
594
594
  order: 20,
@@ -597,7 +597,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
597
597
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
598
598
  command: {
599
599
  id: SPLIT_EDITOR,
600
- title: ( localize(3183, "Split Right"))
600
+ title: ( localize(3191, "Split Right"))
601
601
  },
602
602
  group: "5_split",
603
603
  order: 10,
@@ -606,7 +606,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
606
606
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
607
607
  command: {
608
608
  id: SPLIT_EDITOR,
609
- title: ( localize(3181, "Split Down"))
609
+ title: ( localize(3189, "Split Down"))
610
610
  },
611
611
  group: "5_split",
612
612
  order: 10,
@@ -614,14 +614,14 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
614
614
  });
615
615
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
616
616
  submenu: MenuId.EditorSplitMoveSubmenu,
617
- title: ( localize(3205, "Split & Move")),
617
+ title: ( localize(3213, "Split & Move")),
618
618
  group: "5_split",
619
619
  order: 15
620
620
  });
621
621
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
622
622
  command: {
623
623
  id: MOVE_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
624
- title: ( localize(3206, "Move into New Window"))
624
+ title: ( localize(3214, "Move into New Window"))
625
625
  },
626
626
  group: "7_new_window",
627
627
  order: 10
@@ -629,14 +629,14 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
629
629
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
630
630
  command: {
631
631
  id: COPY_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
632
- title: ( localize(3207, "Copy into New Window"))
632
+ title: ( localize(3215, "Copy into New Window"))
633
633
  },
634
634
  group: "7_new_window",
635
635
  order: 20
636
636
  });
637
637
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
638
638
  submenu: MenuId.EditorTitleContextShare,
639
- title: ( localize(3208, "Share")),
639
+ title: ( localize(3216, "Share")),
640
640
  group: "11_share",
641
641
  order: -1,
642
642
  when: ( MultipleEditorsSelectedInGroupContext.negate())
@@ -644,7 +644,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
644
644
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
645
645
  command: {
646
646
  id: SPLIT_EDITOR_UP,
647
- title: ( localize(3180, "Split Up"))
647
+ title: ( localize(3188, "Split Up"))
648
648
  },
649
649
  group: "1_split",
650
650
  order: 10
@@ -652,7 +652,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
652
652
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
653
653
  command: {
654
654
  id: SPLIT_EDITOR_DOWN,
655
- title: ( localize(3181, "Split Down"))
655
+ title: ( localize(3189, "Split Down"))
656
656
  },
657
657
  group: "1_split",
658
658
  order: 20
@@ -660,7 +660,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
660
660
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
661
661
  command: {
662
662
  id: SPLIT_EDITOR_LEFT,
663
- title: ( localize(3182, "Split Left"))
663
+ title: ( localize(3190, "Split Left"))
664
664
  },
665
665
  group: "1_split",
666
666
  order: 30
@@ -668,7 +668,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
668
668
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
669
669
  command: {
670
670
  id: SPLIT_EDITOR_RIGHT,
671
- title: ( localize(3183, "Split Right"))
671
+ title: ( localize(3191, "Split Right"))
672
672
  },
673
673
  group: "1_split",
674
674
  order: 40
@@ -676,7 +676,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
676
676
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
677
677
  command: {
678
678
  id: MOVE_EDITOR_INTO_ABOVE_GROUP,
679
- title: ( localize(3209, "Move Above"))
679
+ title: ( localize(3217, "Move Above"))
680
680
  },
681
681
  group: "2_move",
682
682
  order: 10
@@ -684,7 +684,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
684
684
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
685
685
  command: {
686
686
  id: MOVE_EDITOR_INTO_BELOW_GROUP,
687
- title: ( localize(3210, "Move Below"))
687
+ title: ( localize(3218, "Move Below"))
688
688
  },
689
689
  group: "2_move",
690
690
  order: 20
@@ -692,7 +692,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
692
692
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
693
693
  command: {
694
694
  id: MOVE_EDITOR_INTO_LEFT_GROUP,
695
- title: ( localize(3211, "Move Left"))
695
+ title: ( localize(3219, "Move Left"))
696
696
  },
697
697
  group: "2_move",
698
698
  order: 30
@@ -700,7 +700,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
700
700
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
701
701
  command: {
702
702
  id: MOVE_EDITOR_INTO_RIGHT_GROUP,
703
- title: ( localize(3212, "Move Right"))
703
+ title: ( localize(3220, "Move Right"))
704
704
  },
705
705
  group: "2_move",
706
706
  order: 40
@@ -708,7 +708,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
708
708
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
709
709
  command: {
710
710
  id: SPLIT_EDITOR_IN_GROUP,
711
- title: ( localize(3213, "Split in Group")),
711
+ title: ( localize(3221, "Split in Group")),
712
712
  precondition: ( MultipleEditorsSelectedInGroupContext.negate())
713
713
  },
714
714
  group: "3_split_in_group",
@@ -718,7 +718,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
718
718
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
719
719
  command: {
720
720
  id: JOIN_EDITOR_IN_GROUP,
721
- title: ( localize(3214, "Join in Group")),
721
+ title: ( localize(3222, "Join in Group")),
722
722
  precondition: ( MultipleEditorsSelectedInGroupContext.negate())
723
723
  },
724
724
  group: "3_split_in_group",
@@ -728,7 +728,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
728
728
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
729
729
  command: {
730
730
  id: TOGGLE_DIFF_SIDE_BY_SIDE,
731
- title: ( localize(3215, "Inline View")),
731
+ title: ( localize(3223, "Inline View")),
732
732
  toggled: ( ContextKeyExpr.equals("config.diffEditor.renderSideBySide", false))
733
733
  },
734
734
  group: "1_diff",
@@ -738,7 +738,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
738
738
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
739
739
  command: {
740
740
  id: SHOW_EDITORS_IN_GROUP,
741
- title: ( localize(3216, "Show Opened Editors"))
741
+ title: ( localize(3224, "Show Opened Editors"))
742
742
  },
743
743
  group: "3_open",
744
744
  order: 10
@@ -746,7 +746,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
746
746
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
747
747
  command: {
748
748
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
749
- title: ( localize(3200, "Close All"))
749
+ title: ( localize(3208, "Close All"))
750
750
  },
751
751
  group: "5_close",
752
752
  order: 10
@@ -754,7 +754,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
754
754
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
755
755
  command: {
756
756
  id: CLOSE_SAVED_EDITORS_COMMAND_ID,
757
- title: ( localize(3199, "Close Saved"))
757
+ title: ( localize(3207, "Close Saved"))
758
758
  },
759
759
  group: "5_close",
760
760
  order: 20
@@ -762,7 +762,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
762
762
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
763
763
  command: {
764
764
  id: TOGGLE_KEEP_EDITORS_COMMAND_ID,
765
- title: ( localize(3217, "Enable Preview Editors")),
765
+ title: ( localize(3225, "Enable Preview Editors")),
766
766
  toggled: ( ContextKeyExpr.has("config.workbench.editor.enablePreview"))
767
767
  },
768
768
  group: "7_settings",
@@ -771,7 +771,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
771
771
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
772
772
  command: {
773
773
  id: TOGGLE_MAXIMIZE_EDITOR_GROUP,
774
- title: ( localize(3218, "Maximize Group"))
774
+ title: ( localize(3226, "Maximize Group"))
775
775
  },
776
776
  group: "8_group_operations",
777
777
  order: 5,
@@ -780,7 +780,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
780
780
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
781
781
  command: {
782
782
  id: TOGGLE_MAXIMIZE_EDITOR_GROUP,
783
- title: ( localize(3219, "Unmaximize Group"))
783
+ title: ( localize(3227, "Unmaximize Group"))
784
784
  },
785
785
  group: "8_group_operations",
786
786
  order: 5,
@@ -789,7 +789,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
789
789
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
790
790
  command: {
791
791
  id: TOGGLE_LOCK_GROUP_COMMAND_ID,
792
- title: ( localize(3220, "Lock Group")),
792
+ title: ( localize(3228, "Lock Group")),
793
793
  toggled: ActiveEditorGroupLockedContext
794
794
  },
795
795
  group: "8_group_operations",
@@ -799,12 +799,20 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
799
799
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
800
800
  command: {
801
801
  id: ConfigureEditorAction.ID,
802
- title: ( localize(3221, "Configure Editors"))
802
+ title: ( localize(3229, "Configure Editors"))
803
803
  },
804
804
  group: "9_configure",
805
805
  order: 10
806
806
  });
807
- function appendEditorToolItem(primary, when, order, alternative, precondition, enableInCompactMode) {
807
+ function appendEditorToolItem(
808
+ primary,
809
+ when,
810
+ order,
811
+ alternative,
812
+ precondition,
813
+ enableInCompactMode,
814
+ enableInModalMode
815
+ ) {
808
816
  const item = {
809
817
  command: {
810
818
  id: primary.id,
@@ -828,101 +836,104 @@ function appendEditorToolItem(primary, when, order, alternative, precondition, e
828
836
  if (enableInCompactMode) {
829
837
  MenuRegistry.appendMenuItem(MenuId.CompactWindowEditorTitle, item);
830
838
  }
839
+ if (enableInModalMode) {
840
+ MenuRegistry.appendMenuItem(MenuId.ModalEditorEditorTitle, item);
841
+ }
831
842
  }
832
843
  const SPLIT_ORDER = 100000;
833
844
  const CLOSE_ORDER = 1000000;
834
845
  appendEditorToolItem({
835
846
  id: SPLIT_EDITOR,
836
- title: ( localize(3222, "Split Editor Right")),
847
+ title: ( localize(3230, "Split Editor Right")),
837
848
  icon: Codicon.splitHorizontal
838
849
  }, ( SplitEditorsVertically.negate()), SPLIT_ORDER, {
839
850
  id: SPLIT_EDITOR_DOWN,
840
- title: ( localize(3223, "Split Editor Down")),
851
+ title: ( localize(3231, "Split Editor Down")),
841
852
  icon: Codicon.splitVertical
842
853
  });
843
854
  appendEditorToolItem({
844
855
  id: SPLIT_EDITOR,
845
- title: ( localize(3223, "Split Editor Down")),
856
+ title: ( localize(3231, "Split Editor Down")),
846
857
  icon: Codicon.splitVertical
847
858
  }, SplitEditorsVertically, SPLIT_ORDER, {
848
859
  id: SPLIT_EDITOR_RIGHT,
849
- title: ( localize(3222, "Split Editor Right")),
860
+ title: ( localize(3230, "Split Editor Right")),
850
861
  icon: Codicon.splitHorizontal
851
862
  });
852
863
  appendEditorToolItem({
853
864
  id: TOGGLE_SPLIT_EDITOR_IN_GROUP_LAYOUT,
854
- title: ( localize(3224, "Toggle Layout")),
865
+ title: ( localize(3232, "Toggle Layout")),
855
866
  icon: Codicon.editorLayout
856
867
  }, SideBySideEditorActiveContext, SPLIT_ORDER - 1);
857
868
  appendEditorToolItem({
858
869
  id: CLOSE_EDITOR_COMMAND_ID,
859
- title: ( localize(3186, "Close")),
870
+ title: ( localize(3194, "Close")),
860
871
  icon: Codicon.close
861
872
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ( ActiveEditorDirtyContext.toNegated()), ( ActiveEditorStickyContext.toNegated()))), CLOSE_ORDER, {
862
873
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
863
- title: ( localize(3200, "Close All")),
874
+ title: ( localize(3208, "Close All")),
864
875
  icon: Codicon.closeAll
865
876
  });
866
877
  appendEditorToolItem({
867
878
  id: CLOSE_EDITOR_COMMAND_ID,
868
- title: ( localize(3186, "Close")),
879
+ title: ( localize(3194, "Close")),
869
880
  icon: Codicon.closeDirty
870
881
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ActiveEditorDirtyContext, ( ActiveEditorStickyContext.toNegated()))), CLOSE_ORDER, {
871
882
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
872
- title: ( localize(3200, "Close All")),
883
+ title: ( localize(3208, "Close All")),
873
884
  icon: Codicon.closeAll
874
885
  });
875
886
  appendEditorToolItem({
876
887
  id: UNPIN_EDITOR_COMMAND_ID,
877
- title: ( localize(3204, "Unpin")),
888
+ title: ( localize(3212, "Unpin")),
878
889
  icon: Codicon.pinned
879
890
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ( ActiveEditorDirtyContext.toNegated()), ActiveEditorStickyContext)), CLOSE_ORDER, {
880
891
  id: CLOSE_EDITOR_COMMAND_ID,
881
- title: ( localize(3186, "Close")),
892
+ title: ( localize(3194, "Close")),
882
893
  icon: Codicon.close
883
894
  });
884
895
  appendEditorToolItem({
885
896
  id: UNPIN_EDITOR_COMMAND_ID,
886
- title: ( localize(3204, "Unpin")),
897
+ title: ( localize(3212, "Unpin")),
887
898
  icon: Codicon.pinnedDirty
888
899
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ActiveEditorDirtyContext, ActiveEditorStickyContext)), CLOSE_ORDER, {
889
900
  id: CLOSE_EDITOR_COMMAND_ID,
890
- title: ( localize(3186, "Close")),
901
+ title: ( localize(3194, "Close")),
891
902
  icon: Codicon.close
892
903
  });
893
904
  appendEditorToolItem({
894
905
  id: LOCK_GROUP_COMMAND_ID,
895
- title: ( localize(3225, "Lock Group")),
906
+ title: ( localize(3233, "Lock Group")),
896
907
  icon: Codicon.unlock
897
908
  }, ( ContextKeyExpr.and(IsAuxiliaryWindowContext, ( ActiveEditorGroupLockedContext.toNegated()))), CLOSE_ORDER - 1);
898
909
  appendEditorToolItem({
899
910
  id: UNLOCK_GROUP_COMMAND_ID,
900
- title: ( localize(3226, "Unlock Group")),
911
+ title: ( localize(3234, "Unlock Group")),
901
912
  icon: Codicon.lock,
902
913
  toggled: ContextKeyExpr.true()
903
914
  }, ActiveEditorGroupLockedContext, CLOSE_ORDER - 1);
904
- const previousChangeIcon = registerIcon("diff-editor-previous-change", Codicon.arrowUp, ( localize(3227, "Icon for the previous change action in the diff editor.")));
915
+ const previousChangeIcon = registerIcon("diff-editor-previous-change", Codicon.arrowUp, ( localize(3235, "Icon for the previous change action in the diff editor.")));
905
916
  appendEditorToolItem({
906
917
  id: GOTO_PREVIOUS_CHANGE,
907
- title: ( localize(3228, "Previous Change")),
918
+ title: ( localize(3236, "Previous Change")),
908
919
  icon: previousChangeIcon
909
- }, TextCompareEditorActiveContext, 10, undefined, EditorContextKeys.hasChanges, true);
910
- const nextChangeIcon = registerIcon("diff-editor-next-change", Codicon.arrowDown, ( localize(3229, "Icon for the next change action in the diff editor.")));
920
+ }, TextCompareEditorActiveContext, 10, undefined, EditorContextKeys.hasChanges, true, true);
921
+ const nextChangeIcon = registerIcon("diff-editor-next-change", Codicon.arrowDown, ( localize(3237, "Icon for the next change action in the diff editor.")));
911
922
  appendEditorToolItem({
912
923
  id: GOTO_NEXT_CHANGE,
913
- title: ( localize(3230, "Next Change")),
924
+ title: ( localize(3238, "Next Change")),
914
925
  icon: nextChangeIcon
915
- }, TextCompareEditorActiveContext, 11, undefined, EditorContextKeys.hasChanges, true);
926
+ }, TextCompareEditorActiveContext, 11, undefined, EditorContextKeys.hasChanges, true, true);
916
927
  appendEditorToolItem({
917
928
  id: DIFF_SWAP_SIDES,
918
- title: ( localize(3231, "Swap Left and Right Side")),
929
+ title: ( localize(3239, "Swap Left and Right Side")),
919
930
  icon: Codicon.arrowSwap
920
931
  }, ( ContextKeyExpr.and(TextCompareEditorActiveContext, ActiveCompareEditorCanSwapContext)), 15, undefined, undefined);
921
- const toggleWhitespace = registerIcon("diff-editor-toggle-whitespace", Codicon.whitespace, ( localize(3232, "Icon for the toggle whitespace action in the diff editor.")));
932
+ const toggleWhitespace = registerIcon("diff-editor-toggle-whitespace", Codicon.whitespace, ( localize(3240, "Icon for the toggle whitespace action in the diff editor.")));
922
933
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
923
934
  command: {
924
935
  id: TOGGLE_DIFF_IGNORE_TRIM_WHITESPACE,
925
- title: ( localize(3233, "Show Leading/Trailing Whitespace Differences")),
936
+ title: ( localize(3241, "Show Leading/Trailing Whitespace Differences")),
926
937
  icon: toggleWhitespace,
927
938
  precondition: TextCompareEditorActiveContext,
928
939
  toggled: ( ContextKeyExpr.equals("config.diffEditor.ignoreTrimWhitespace", false))
@@ -934,7 +945,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
934
945
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
935
946
  command: {
936
947
  id: KEEP_EDITOR_COMMAND_ID,
937
- title: ( localize2(3234, "Keep Editor")),
948
+ title: ( localize2(3242, "Keep Editor")),
938
949
  category: Categories.View
939
950
  },
940
951
  when: ( ContextKeyExpr.has("config.workbench.editor.enablePreview"))
@@ -942,56 +953,56 @@ MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
942
953
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
943
954
  command: {
944
955
  id: PIN_EDITOR_COMMAND_ID,
945
- title: ( localize2(3235, "Pin Editor")),
956
+ title: ( localize2(3243, "Pin Editor")),
946
957
  category: Categories.View
947
958
  }
948
959
  });
949
960
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
950
961
  command: {
951
962
  id: UNPIN_EDITOR_COMMAND_ID,
952
- title: ( localize2(3236, "Unpin Editor")),
963
+ title: ( localize2(3244, "Unpin Editor")),
953
964
  category: Categories.View
954
965
  }
955
966
  });
956
967
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
957
968
  command: {
958
969
  id: CLOSE_EDITOR_COMMAND_ID,
959
- title: ( localize2(3237, "Close Editor")),
970
+ title: ( localize2(3245, "Close Editor")),
960
971
  category: Categories.View
961
972
  }
962
973
  });
963
974
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
964
975
  command: {
965
976
  id: CLOSE_PINNED_EDITOR_COMMAND_ID,
966
- title: ( localize2(3238, "Close Pinned Editor")),
977
+ title: ( localize2(3246, "Close Pinned Editor")),
967
978
  category: Categories.View
968
979
  }
969
980
  });
970
981
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
971
982
  command: {
972
983
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
973
- title: ( localize2(3239, "Close All Editors in Group")),
984
+ title: ( localize2(3247, "Close All Editors in Group")),
974
985
  category: Categories.View
975
986
  }
976
987
  });
977
988
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
978
989
  command: {
979
990
  id: CLOSE_SAVED_EDITORS_COMMAND_ID,
980
- title: ( localize2(3240, "Close Saved Editors in Group")),
991
+ title: ( localize2(3248, "Close Saved Editors in Group")),
981
992
  category: Categories.View
982
993
  }
983
994
  });
984
995
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
985
996
  command: {
986
997
  id: CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID,
987
- title: ( localize2(3241, "Close Other Editors in Group")),
998
+ title: ( localize2(3249, "Close Other Editors in Group")),
988
999
  category: Categories.View
989
1000
  }
990
1001
  });
991
1002
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
992
1003
  command: {
993
1004
  id: CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID,
994
- title: ( localize2(3242, "Close Editors to the Right in Group")),
1005
+ title: ( localize2(3250, "Close Editors to the Right in Group")),
995
1006
  category: Categories.View
996
1007
  },
997
1008
  when: ( ActiveEditorLastInGroupContext.toNegated())
@@ -999,7 +1010,7 @@ MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
999
1010
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1000
1011
  command: {
1001
1012
  id: CLOSE_EDITORS_AND_GROUP_COMMAND_ID,
1002
- title: ( localize2(3243, "Close Editor Group")),
1013
+ title: ( localize2(3251, "Close Editor Group")),
1003
1014
  category: Categories.View
1004
1015
  },
1005
1016
  when: MultipleEditorGroupsContext
@@ -1007,7 +1018,7 @@ MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1007
1018
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1008
1019
  command: {
1009
1020
  id: REOPEN_WITH_COMMAND_ID,
1010
- title: ( localize2(3201, "Reopen Editor With...")),
1021
+ title: ( localize2(3209, "Reopen Editor With...")),
1011
1022
  category: Categories.View
1012
1023
  },
1013
1024
  when: ActiveEditorAvailableEditorIdsContext
@@ -1016,7 +1027,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarRecentMenu, {
1016
1027
  group: "1_editor",
1017
1028
  command: {
1018
1029
  id: ReopenClosedEditorAction.ID,
1019
- title: ( localize(3244, "&&Reopen Closed Editor")),
1030
+ title: ( localize(3252, "&&Reopen Closed Editor")),
1020
1031
  precondition: ( ContextKeyExpr.has("canReopenClosedEditor"))
1021
1032
  },
1022
1033
  order: 1
@@ -1025,19 +1036,19 @@ MenuRegistry.appendMenuItem(MenuId.MenubarRecentMenu, {
1025
1036
  group: "z_clear",
1026
1037
  command: {
1027
1038
  id: ClearRecentFilesAction.ID,
1028
- title: ( localize(3245, "&&Clear Recently Opened..."))
1039
+ title: ( localize(3253, "&&Clear Recently Opened..."))
1029
1040
  },
1030
1041
  order: 1
1031
1042
  });
1032
1043
  MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
1033
- title: ( localize(3246, "Share")),
1044
+ title: ( localize(3254, "Share")),
1034
1045
  submenu: MenuId.MenubarShare,
1035
1046
  group: "45_share",
1036
1047
  order: 1
1037
1048
  });
1038
1049
  MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, {
1039
1050
  group: "2_appearance",
1040
- title: ( localize(3247, "Editor &&Layout")),
1051
+ title: ( localize(3255, "Editor &&Layout")),
1041
1052
  submenu: MenuId.MenubarLayoutMenu,
1042
1053
  order: 2
1043
1054
  });
@@ -1046,8 +1057,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1046
1057
  command: {
1047
1058
  id: SPLIT_EDITOR_UP,
1048
1059
  title: {
1049
- ...( localize2(3248, "Split Up")),
1050
- mnemonicTitle: ( localize(3249, "Split &&Up"))
1060
+ ...( localize2(3256, "Split Up")),
1061
+ mnemonicTitle: ( localize(3257, "Split &&Up"))
1051
1062
  }
1052
1063
  },
1053
1064
  order: 1
@@ -1057,8 +1068,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1057
1068
  command: {
1058
1069
  id: SPLIT_EDITOR_DOWN,
1059
1070
  title: {
1060
- ...( localize2(3250, "Split Down")),
1061
- mnemonicTitle: ( localize(3251, "Split &&Down"))
1071
+ ...( localize2(3258, "Split Down")),
1072
+ mnemonicTitle: ( localize(3259, "Split &&Down"))
1062
1073
  }
1063
1074
  },
1064
1075
  order: 2
@@ -1068,8 +1079,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1068
1079
  command: {
1069
1080
  id: SPLIT_EDITOR_LEFT,
1070
1081
  title: {
1071
- ...( localize2(3252, "Split Left")),
1072
- mnemonicTitle: ( localize(3253, "Split &&Left"))
1082
+ ...( localize2(3260, "Split Left")),
1083
+ mnemonicTitle: ( localize(3261, "Split &&Left"))
1073
1084
  }
1074
1085
  },
1075
1086
  order: 3
@@ -1079,8 +1090,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1079
1090
  command: {
1080
1091
  id: SPLIT_EDITOR_RIGHT,
1081
1092
  title: {
1082
- ...( localize2(3254, "Split Right")),
1083
- mnemonicTitle: ( localize(3255, "Split &&Right"))
1093
+ ...( localize2(3262, "Split Right")),
1094
+ mnemonicTitle: ( localize(3263, "Split &&Right"))
1084
1095
  }
1085
1096
  },
1086
1097
  order: 4
@@ -1090,8 +1101,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1090
1101
  command: {
1091
1102
  id: SPLIT_EDITOR_IN_GROUP,
1092
1103
  title: {
1093
- ...( localize2(3256, "Split in Group")),
1094
- mnemonicTitle: ( localize(3257, "Split in &&Group"))
1104
+ ...( localize2(3264, "Split in Group")),
1105
+ mnemonicTitle: ( localize(3265, "Split in &&Group"))
1095
1106
  }
1096
1107
  },
1097
1108
  when: ActiveEditorCanSplitInGroupContext,
@@ -1102,8 +1113,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1102
1113
  command: {
1103
1114
  id: JOIN_EDITOR_IN_GROUP,
1104
1115
  title: {
1105
- ...( localize2(3258, "Join in Group")),
1106
- mnemonicTitle: ( localize(3259, "Join in &&Group"))
1116
+ ...( localize2(3266, "Join in Group")),
1117
+ mnemonicTitle: ( localize(3267, "Join in &&Group"))
1107
1118
  }
1108
1119
  },
1109
1120
  when: SideBySideEditorActiveContext,
@@ -1114,8 +1125,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1114
1125
  command: {
1115
1126
  id: MOVE_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
1116
1127
  title: {
1117
- ...( localize2(3260, "Move Editor into New Window")),
1118
- mnemonicTitle: ( localize(3261, "&&Move Editor into New Window"))
1128
+ ...( localize2(3268, "Move Editor into New Window")),
1129
+ mnemonicTitle: ( localize(3269, "&&Move Editor into New Window"))
1119
1130
  }
1120
1131
  },
1121
1132
  order: 1
@@ -1125,8 +1136,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1125
1136
  command: {
1126
1137
  id: COPY_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
1127
1138
  title: {
1128
- ...( localize2(3262, "Copy Editor into New Window")),
1129
- mnemonicTitle: ( localize(3263, "&&Copy Editor into New Window"))
1139
+ ...( localize2(3270, "Copy Editor into New Window")),
1140
+ mnemonicTitle: ( localize(3271, "&&Copy Editor into New Window"))
1130
1141
  }
1131
1142
  },
1132
1143
  order: 2
@@ -1136,8 +1147,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1136
1147
  command: {
1137
1148
  id: EditorLayoutSingleAction.ID,
1138
1149
  title: {
1139
- ...( localize2(3264, "Single")),
1140
- mnemonicTitle: ( localize(3265, "&&Single"))
1150
+ ...( localize2(3272, "Single")),
1151
+ mnemonicTitle: ( localize(3273, "&&Single"))
1141
1152
  }
1142
1153
  },
1143
1154
  order: 1
@@ -1147,8 +1158,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1147
1158
  command: {
1148
1159
  id: EditorLayoutTwoColumnsAction.ID,
1149
1160
  title: {
1150
- ...( localize2(3266, "Two Columns")),
1151
- mnemonicTitle: ( localize(3267, "&&Two Columns"))
1161
+ ...( localize2(3274, "Two Columns")),
1162
+ mnemonicTitle: ( localize(3275, "&&Two Columns"))
1152
1163
  }
1153
1164
  },
1154
1165
  order: 3
@@ -1158,8 +1169,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1158
1169
  command: {
1159
1170
  id: EditorLayoutThreeColumnsAction.ID,
1160
1171
  title: {
1161
- ...( localize2(3268, "Three Columns")),
1162
- mnemonicTitle: ( localize(3269, "T&&hree Columns"))
1172
+ ...( localize2(3276, "Three Columns")),
1173
+ mnemonicTitle: ( localize(3277, "T&&hree Columns"))
1163
1174
  }
1164
1175
  },
1165
1176
  order: 4
@@ -1169,8 +1180,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1169
1180
  command: {
1170
1181
  id: EditorLayoutTwoRowsAction.ID,
1171
1182
  title: {
1172
- ...( localize2(3270, "Two Rows")),
1173
- mnemonicTitle: ( localize(3271, "T&&wo Rows"))
1183
+ ...( localize2(3278, "Two Rows")),
1184
+ mnemonicTitle: ( localize(3279, "T&&wo Rows"))
1174
1185
  }
1175
1186
  },
1176
1187
  order: 5
@@ -1180,8 +1191,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1180
1191
  command: {
1181
1192
  id: EditorLayoutThreeRowsAction.ID,
1182
1193
  title: {
1183
- ...( localize2(3272, "Three Rows")),
1184
- mnemonicTitle: ( localize(3273, "Three &&Rows"))
1194
+ ...( localize2(3280, "Three Rows")),
1195
+ mnemonicTitle: ( localize(3281, "Three &&Rows"))
1185
1196
  }
1186
1197
  },
1187
1198
  order: 6
@@ -1191,8 +1202,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1191
1202
  command: {
1192
1203
  id: EditorLayoutTwoByTwoGridAction.ID,
1193
1204
  title: {
1194
- ...( localize2(3274, "Grid (2x2)")),
1195
- mnemonicTitle: ( localize(3275, "&&Grid (2x2)"))
1205
+ ...( localize2(3282, "Grid (2x2)")),
1206
+ mnemonicTitle: ( localize(3283, "&&Grid (2x2)"))
1196
1207
  }
1197
1208
  },
1198
1209
  order: 7
@@ -1202,8 +1213,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1202
1213
  command: {
1203
1214
  id: EditorLayoutTwoRowsRightAction.ID,
1204
1215
  title: {
1205
- ...( localize2(3276, "Two Rows Right")),
1206
- mnemonicTitle: ( localize(3277, "Two R&&ows Right"))
1216
+ ...( localize2(3284, "Two Rows Right")),
1217
+ mnemonicTitle: ( localize(3285, "Two R&&ows Right"))
1207
1218
  }
1208
1219
  },
1209
1220
  order: 8
@@ -1213,8 +1224,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1213
1224
  command: {
1214
1225
  id: EditorLayoutTwoColumnsBottomAction.ID,
1215
1226
  title: {
1216
- ...( localize2(3278, "Two Columns Bottom")),
1217
- mnemonicTitle: ( localize(3279, "Two &&Columns Bottom"))
1227
+ ...( localize2(3286, "Two Columns Bottom")),
1228
+ mnemonicTitle: ( localize(3287, "Two &&Columns Bottom"))
1218
1229
  }
1219
1230
  },
1220
1231
  order: 9
@@ -1223,7 +1234,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
1223
1234
  group: "1_history_nav",
1224
1235
  command: {
1225
1236
  id: "workbench.action.navigateToLastEditLocation",
1226
- title: ( localize(3280, "&&Last Edit Location")),
1237
+ title: ( localize(3288, "&&Last Edit Location")),
1227
1238
  precondition: ( ContextKeyExpr.has("canNavigateToLastEditLocation"))
1228
1239
  },
1229
1240
  order: 3
@@ -1232,7 +1243,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1232
1243
  group: "1_sideBySide",
1233
1244
  command: {
1234
1245
  id: FOCUS_FIRST_SIDE_EDITOR,
1235
- title: ( localize(3281, "&&First Side in Editor"))
1246
+ title: ( localize(3289, "&&First Side in Editor"))
1236
1247
  },
1237
1248
  when: ( ContextKeyExpr.or(SideBySideEditorActiveContext, TextCompareEditorActiveContext)),
1238
1249
  order: 1
@@ -1241,7 +1252,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1241
1252
  group: "1_sideBySide",
1242
1253
  command: {
1243
1254
  id: FOCUS_SECOND_SIDE_EDITOR,
1244
- title: ( localize(3282, "&&Second Side in Editor"))
1255
+ title: ( localize(3290, "&&Second Side in Editor"))
1245
1256
  },
1246
1257
  when: ( ContextKeyExpr.or(SideBySideEditorActiveContext, TextCompareEditorActiveContext)),
1247
1258
  order: 2
@@ -1250,7 +1261,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1250
1261
  group: "2_any",
1251
1262
  command: {
1252
1263
  id: "workbench.action.nextEditor",
1253
- title: ( localize(3283, "&&Next Editor"))
1264
+ title: ( localize(3291, "&&Next Editor"))
1254
1265
  },
1255
1266
  order: 1
1256
1267
  });
@@ -1258,7 +1269,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1258
1269
  group: "2_any",
1259
1270
  command: {
1260
1271
  id: "workbench.action.previousEditor",
1261
- title: ( localize(3284, "&&Previous Editor"))
1272
+ title: ( localize(3292, "&&Previous Editor"))
1262
1273
  },
1263
1274
  order: 2
1264
1275
  });
@@ -1266,7 +1277,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1266
1277
  group: "3_any_used",
1267
1278
  command: {
1268
1279
  id: "workbench.action.openNextRecentlyUsedEditor",
1269
- title: ( localize(3285, "&&Next Used Editor"))
1280
+ title: ( localize(3293, "&&Next Used Editor"))
1270
1281
  },
1271
1282
  order: 1
1272
1283
  });
@@ -1274,7 +1285,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1274
1285
  group: "3_any_used",
1275
1286
  command: {
1276
1287
  id: "workbench.action.openPreviousRecentlyUsedEditor",
1277
- title: ( localize(3286, "&&Previous Used Editor"))
1288
+ title: ( localize(3294, "&&Previous Used Editor"))
1278
1289
  },
1279
1290
  order: 2
1280
1291
  });
@@ -1282,7 +1293,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1282
1293
  group: "4_group",
1283
1294
  command: {
1284
1295
  id: "workbench.action.nextEditorInGroup",
1285
- title: ( localize(3287, "&&Next Editor in Group"))
1296
+ title: ( localize(3295, "&&Next Editor in Group"))
1286
1297
  },
1287
1298
  order: 1
1288
1299
  });
@@ -1290,7 +1301,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1290
1301
  group: "4_group",
1291
1302
  command: {
1292
1303
  id: "workbench.action.previousEditorInGroup",
1293
- title: ( localize(3288, "&&Previous Editor in Group"))
1304
+ title: ( localize(3296, "&&Previous Editor in Group"))
1294
1305
  },
1295
1306
  order: 2
1296
1307
  });
@@ -1298,7 +1309,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1298
1309
  group: "5_group_used",
1299
1310
  command: {
1300
1311
  id: "workbench.action.openNextRecentlyUsedEditorInGroup",
1301
- title: ( localize(3289, "&&Next Used Editor in Group"))
1312
+ title: ( localize(3297, "&&Next Used Editor in Group"))
1302
1313
  },
1303
1314
  order: 1
1304
1315
  });
@@ -1306,13 +1317,13 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1306
1317
  group: "5_group_used",
1307
1318
  command: {
1308
1319
  id: "workbench.action.openPreviousRecentlyUsedEditorInGroup",
1309
- title: ( localize(3290, "&&Previous Used Editor in Group"))
1320
+ title: ( localize(3298, "&&Previous Used Editor in Group"))
1310
1321
  },
1311
1322
  order: 2
1312
1323
  });
1313
1324
  MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
1314
1325
  group: "2_editor_nav",
1315
- title: ( localize(3291, "Switch &&Editor")),
1326
+ title: ( localize(3299, "Switch &&Editor")),
1316
1327
  submenu: MenuId.MenubarSwitchEditorMenu,
1317
1328
  order: 1
1318
1329
  });
@@ -1320,7 +1331,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1320
1331
  group: "1_focus_index",
1321
1332
  command: {
1322
1333
  id: "workbench.action.focusFirstEditorGroup",
1323
- title: ( localize(3292, "Group &&1"))
1334
+ title: ( localize(3300, "Group &&1"))
1324
1335
  },
1325
1336
  order: 1
1326
1337
  });
@@ -1328,7 +1339,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1328
1339
  group: "1_focus_index",
1329
1340
  command: {
1330
1341
  id: "workbench.action.focusSecondEditorGroup",
1331
- title: ( localize(3293, "Group &&2"))
1342
+ title: ( localize(3301, "Group &&2"))
1332
1343
  },
1333
1344
  order: 2
1334
1345
  });
@@ -1336,7 +1347,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1336
1347
  group: "1_focus_index",
1337
1348
  command: {
1338
1349
  id: "workbench.action.focusThirdEditorGroup",
1339
- title: ( localize(3294, "Group &&3")),
1350
+ title: ( localize(3302, "Group &&3")),
1340
1351
  precondition: MultipleEditorGroupsContext
1341
1352
  },
1342
1353
  order: 3
@@ -1345,7 +1356,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1345
1356
  group: "1_focus_index",
1346
1357
  command: {
1347
1358
  id: "workbench.action.focusFourthEditorGroup",
1348
- title: ( localize(3295, "Group &&4")),
1359
+ title: ( localize(3303, "Group &&4")),
1349
1360
  precondition: MultipleEditorGroupsContext
1350
1361
  },
1351
1362
  order: 4
@@ -1354,7 +1365,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1354
1365
  group: "1_focus_index",
1355
1366
  command: {
1356
1367
  id: "workbench.action.focusFifthEditorGroup",
1357
- title: ( localize(3296, "Group &&5")),
1368
+ title: ( localize(3304, "Group &&5")),
1358
1369
  precondition: MultipleEditorGroupsContext
1359
1370
  },
1360
1371
  order: 5
@@ -1363,7 +1374,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1363
1374
  group: "2_next_prev",
1364
1375
  command: {
1365
1376
  id: "workbench.action.focusNextGroup",
1366
- title: ( localize(3297, "&&Next Group")),
1377
+ title: ( localize(3305, "&&Next Group")),
1367
1378
  precondition: MultipleEditorGroupsContext
1368
1379
  },
1369
1380
  order: 1
@@ -1372,7 +1383,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1372
1383
  group: "2_next_prev",
1373
1384
  command: {
1374
1385
  id: "workbench.action.focusPreviousGroup",
1375
- title: ( localize(3298, "&&Previous Group")),
1386
+ title: ( localize(3306, "&&Previous Group")),
1376
1387
  precondition: MultipleEditorGroupsContext
1377
1388
  },
1378
1389
  order: 2
@@ -1381,7 +1392,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1381
1392
  group: "3_directional",
1382
1393
  command: {
1383
1394
  id: "workbench.action.focusLeftGroup",
1384
- title: ( localize(3299, "Group &&Left")),
1395
+ title: ( localize(3307, "Group &&Left")),
1385
1396
  precondition: MultipleEditorGroupsContext
1386
1397
  },
1387
1398
  order: 1
@@ -1390,7 +1401,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1390
1401
  group: "3_directional",
1391
1402
  command: {
1392
1403
  id: "workbench.action.focusRightGroup",
1393
- title: ( localize(3300, "Group &&Right")),
1404
+ title: ( localize(3308, "Group &&Right")),
1394
1405
  precondition: MultipleEditorGroupsContext
1395
1406
  },
1396
1407
  order: 2
@@ -1399,7 +1410,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1399
1410
  group: "3_directional",
1400
1411
  command: {
1401
1412
  id: "workbench.action.focusAboveGroup",
1402
- title: ( localize(3301, "Group &&Above")),
1413
+ title: ( localize(3309, "Group &&Above")),
1403
1414
  precondition: MultipleEditorGroupsContext
1404
1415
  },
1405
1416
  order: 3
@@ -1408,14 +1419,14 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1408
1419
  group: "3_directional",
1409
1420
  command: {
1410
1421
  id: "workbench.action.focusBelowGroup",
1411
- title: ( localize(3302, "Group &&Below")),
1422
+ title: ( localize(3310, "Group &&Below")),
1412
1423
  precondition: MultipleEditorGroupsContext
1413
1424
  },
1414
1425
  order: 4
1415
1426
  });
1416
1427
  MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
1417
1428
  group: "2_editor_nav",
1418
- title: ( localize(3303, "Switch &&Group")),
1429
+ title: ( localize(3311, "Switch &&Group")),
1419
1430
  submenu: MenuId.MenubarSwitchGroupMenu,
1420
1431
  order: 2
1421
1432
  });