@codingame/monaco-vscode-view-common-service-override 31.0.0 → 32.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 (67) hide show
  1. package/index.js +3 -0
  2. package/package.json +3 -3
  3. package/service-override/vs/workbench/contrib/webview/browser/pre/service-worker.js +107 -88
  4. package/vscode/src/vs/sessions/common/theme.d.ts +21 -0
  5. package/vscode/src/vs/sessions/common/theme.js +126 -0
  6. package/vscode/src/vs/workbench/api/browser/viewsExtensionPoint.js +56 -56
  7. package/vscode/src/vs/workbench/browser/actions/helpActions.js +20 -20
  8. package/vscode/src/vs/workbench/browser/actions/listCommands.js +3 -3
  9. package/vscode/src/vs/workbench/browser/actions/navigationActions.js +6 -6
  10. package/vscode/src/vs/workbench/browser/parts/editor/editor.contribution.js +173 -168
  11. package/vscode/src/vs/workbench/browser/parts/editor/editorConfiguration.d.ts +1 -0
  12. package/vscode/src/vs/workbench/browser/parts/editor/editorConfiguration.js +31 -10
  13. package/vscode/src/vs/workbench/browser/parts/titlebar/menubar.contribution.d.ts +1 -0
  14. package/vscode/src/vs/workbench/browser/parts/titlebar/menubar.contribution.js +78 -0
  15. package/vscode/src/vs/workbench/browser/workbench.zenMode.contribution.d.ts +1 -0
  16. package/vscode/src/vs/workbench/browser/workbench.zenMode.contribution.js +140 -0
  17. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchy.contribution.js +12 -12
  18. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyPeek.js +3 -3
  19. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyTree.js +3 -3
  20. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditor.contribution.js +8 -2
  21. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInputFactory.d.ts +18 -0
  22. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInputFactory.js +84 -1
  23. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditors.d.ts +11 -1
  24. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditors.js +184 -19
  25. package/vscode/src/vs/workbench/contrib/customEditor/common/contributedCustomEditors.js +9 -5
  26. package/vscode/src/vs/workbench/contrib/customEditor/common/customEditor.d.ts +11 -0
  27. package/vscode/src/vs/workbench/contrib/customEditor/common/customEditor.js +9 -2
  28. package/vscode/src/vs/workbench/contrib/customEditor/common/extensionPoint.d.ts +27 -1
  29. package/vscode/src/vs/workbench/contrib/customEditor/common/extensionPoint.js +44 -12
  30. package/vscode/src/vs/workbench/contrib/languageStatus/browser/languageStatus.js +7 -7
  31. package/vscode/src/vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution.js +8 -8
  32. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.js +29 -29
  33. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/devCommands.js +14 -14
  34. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution.js +2 -2
  35. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorAccessibilityHelp.js +5 -5
  36. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/colors.js +13 -13
  37. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/conflictActions.js +20 -20
  38. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editorGutter.js +1 -1
  39. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView.js +3 -3
  40. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView.js +10 -10
  41. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView.js +3 -3
  42. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/mergeEditor.js +1 -1
  43. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/viewModel.js +1 -1
  44. package/vscode/src/vs/workbench/contrib/preferences/browser/keyboardLayoutPicker.js +12 -12
  45. package/vscode/src/vs/workbench/contrib/sash/browser/sash.contribution.js +2 -2
  46. package/vscode/src/vs/workbench/contrib/scrollLocking/browser/scrollLocking.js +7 -7
  47. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchy.contribution.js +10 -10
  48. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyPeek.js +3 -3
  49. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyTree.js +3 -3
  50. package/vscode/src/vs/workbench/contrib/webview/browser/overlayWebview.d.ts +3 -2
  51. package/vscode/src/vs/workbench/contrib/webview/browser/overlayWebview.js +16 -8
  52. package/vscode/src/vs/workbench/contrib/webview/browser/resourceLoading.d.ts +9 -5
  53. package/vscode/src/vs/workbench/contrib/webview/browser/resourceLoading.js +22 -5
  54. package/vscode/src/vs/workbench/contrib/webview/browser/webviewElement.d.ts +4 -7
  55. package/vscode/src/vs/workbench/contrib/webview/browser/webviewElement.js +133 -32
  56. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewCommands.js +5 -5
  57. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution.js +1 -1
  58. package/vscode/src/vs/workbench/contrib/webviewView/browser/webviewViewPane.d.ts +0 -5
  59. package/vscode/src/vs/workbench/contrib/webviewView/browser/webviewViewPane.js +5 -27
  60. package/vscode/src/vs/workbench/services/editor/browser/editorResolverService.d.ts +15 -7
  61. package/vscode/src/vs/workbench/services/editor/browser/editorResolverService.js +129 -55
  62. package/vscode/src/vs/workbench/services/history/browser/historyService.js +9 -9
  63. package/vscode/src/vs/workbench/services/progress/browser/progressService.js +7 -7
  64. package/vscode/src/vs/workbench/services/untitled/common/untitledTextEditorHandler.js +1 -2
  65. package/vscode/src/vs/workbench/services/views/browser/viewDescriptorService.d.ts +3 -2
  66. package/vscode/src/vs/workbench/services/views/browser/viewDescriptorService.js +31 -33
  67. package/vscode/src/vs/workbench/services/views/browser/viewsService.js +9 -9
@@ -3,7 +3,7 @@ import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/regist
3
3
  import { localize, localize2 } from '@codingame/monaco-vscode-api/vscode/vs/nls';
4
4
  import { EditorPaneDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/editor';
5
5
  import { EditorExtensions } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor';
6
- import { IsAuxiliaryWindowContext, ActiveEditorGroupLockedContext, EditorPartMultipleEditorGroupsContext, MultipleEditorGroupsContext, InEditorZenModeContext, EditorGroupEditorsCountContext, EditorTabsVisibleContext, ActiveEditorLastInGroupContext, MultipleEditorsSelectedInGroupContext, ActiveEditorAvailableEditorIdsContext, ActiveEditorPinnedContext, ActiveEditorStickyContext, SplitEditorsVertically, ActiveEditorCanSplitInGroupContext, SideBySideEditorActiveContext, EditorPartMaximizedEditorGroupContext, ActiveEditorDirtyContext, TextCompareEditorActiveContext, ActiveCompareEditorCanSwapContext, IsSessionsWindowContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
6
+ import { IsAuxiliaryWindowContext, ActiveEditorGroupLockedContext, EditorPartMultipleEditorGroupsContext, MultipleEditorGroupsContext, InEditorZenModeContext, EditorGroupEditorsCountContext, EditorTabsVisibleContext, ActiveEditorLastInGroupContext, MultipleEditorsSelectedInGroupContext, ActiveEditorAvailableEditorIdsContext, ActiveEditorPinnedContext, ActiveEditorStickyContext, SplitEditorsVertically, ActiveEditorCanSplitInGroupContext, SideBySideEditorActiveContext, ActiveCustomEditorDiffCanToggleLayoutContext, EditorPartMaximizedEditorGroupContext, ActiveEditorDirtyContext, TextCompareEditorActiveContext, ActiveCompareEditorCanSwapContext, ActiveCustomEditorTextDiffContext, IsSessionsWindowContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
7
7
  import { SideBySideEditorInput, SideBySideEditorInputSerializer } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor/sideBySideEditorInput';
8
8
  import { TextResourceEditor } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/editor/textResourceEditor';
9
9
  import { SideBySideEditor } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/editor/sideBySideEditor';
@@ -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(3175, "Text Editor"))),
42
+ EditorPaneDescriptor.create(TextResourceEditor, TextResourceEditor.ID, ( localize(3216, "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(3176, "Text Diff Editor"))),
46
+ EditorPaneDescriptor.create(TextDiffEditor, TextDiffEditor.ID, ( localize(3217, "Text Diff Editor"))),
47
47
  [( new SyncDescriptor(DiffEditorInput))]
48
48
  );
49
49
  ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
50
- EditorPaneDescriptor.create(BinaryResourceDiffEditor, BinaryResourceDiffEditor.ID, ( localize(3177, "Binary Diff Editor"))),
50
+ EditorPaneDescriptor.create(BinaryResourceDiffEditor, BinaryResourceDiffEditor.ID, ( localize(3218, "Binary Diff Editor"))),
51
51
  [( new SyncDescriptor(DiffEditorInput))]
52
52
  );
53
53
  ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
54
- EditorPaneDescriptor.create(SideBySideEditor, SideBySideEditor.ID, ( localize(3178, "Side by Side Editor"))),
54
+ EditorPaneDescriptor.create(SideBySideEditor, SideBySideEditor.ID, ( localize(3219, "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(3179, "Type the name of an editor to open it.")),
82
+ placeholder: ( localize(3220, "Type the name of an editor to open it.")),
83
83
  helpEntries: [{
84
- description: ( localize(3180, "Show Editors in Active Group by Most Recently Used")),
84
+ description: ( localize(3221, "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(3179, "Type the name of an editor to open it.")),
92
+ placeholder: ( localize(3220, "Type the name of an editor to open it.")),
93
93
  helpEntries: [{
94
- description: ( localize(3181, "Show All Opened Editors By Appearance")),
94
+ description: ( localize(3222, "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(3179, "Type the name of an editor to open it.")),
102
+ placeholder: ( localize(3220, "Type the name of an editor to open it.")),
103
103
  helpEntries: [{
104
- description: ( localize(3182, "Show All Opened Editors By Most Recently Used")),
104
+ description: ( localize(3223, "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(3183, "Lock Group")),
272
+ title: ( localize(3224, "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(3184, "Unlock Group")),
282
+ title: ( localize(3225, "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(3185, "Close Group")),
293
+ title: ( localize(3226, "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(3186, "Split Up"))
303
+ title: ( localize(3227, "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(3187, "Split Down"))
311
+ title: ( localize(3228, "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(3188, "Split Left"))
319
+ title: ( localize(3229, "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(3189, "Split Right"))
327
+ title: ( localize(3230, "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(3190, "New Window"))
335
+ title: ( localize(3231, "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(3191, "Lock Group")),
343
+ title: ( localize(3232, "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(3192, "Close"))
353
+ title: ( localize(3233, "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(3186, "Split Up"))
362
+ title: ( localize(3227, "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(3187, "Split Down"))
370
+ title: ( localize(3228, "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(3188, "Split Left"))
378
+ title: ( localize(3229, "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(3189, "Split Right"))
386
+ title: ( localize(3230, "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(3193, "Move into New Window"))
394
+ title: ( localize(3234, "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(3194, "Copy into New Window"))
402
+ title: ( localize(3235, "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(3195, "Tab Bar")),
409
+ title: ( localize(3236, "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(3196, "Multiple Tabs")),
417
+ title: ( localize(3237, "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(3197, "Single Tab")),
426
+ title: ( localize(3238, "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(3198, "Hidden")),
435
+ title: ( localize(3239, "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(3195, "Tab Bar")),
443
+ title: ( localize(3236, "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(3196, "Multiple Tabs")),
451
+ title: ( localize(3237, "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(3197, "Single Tab")),
460
+ title: ( localize(3238, "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(3198, "Hidden")),
469
+ title: ( localize(3239, "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(3199, "Editor Actions Position")),
477
+ title: ( localize(3240, "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(3195, "Tab Bar")),
484
+ title: ( localize(3236, "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(3200, "Title Bar")),
494
+ title: ( localize(3241, "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(3201, "Hidden")),
503
+ title: ( localize(3242, "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(3202, "Configure Tabs"))
512
+ title: ( localize(3243, "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(3192, "Close"))
520
+ title: ( localize(3233, "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(3203, "Close Others")),
528
+ title: ( localize(3244, "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(3204, "Close to the Right")),
537
+ title: ( localize(3245, "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(3205, "Close Saved"))
547
+ title: ( localize(3246, "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(3206, "Close All"))
555
+ title: ( localize(3247, "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(3207, "Reopen Editor With..."))
563
+ title: ( localize(3248, "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(3208, "Keep Open")),
572
+ title: ( localize(3249, "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(3209, "Pin"))
582
+ title: ( localize(3250, "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(3210, "Unpin"))
591
+ title: ( localize(3251, "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(3189, "Split Right"))
600
+ title: ( localize(3230, "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(3187, "Split Down"))
609
+ title: ( localize(3228, "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(3211, "Split & Move")),
617
+ title: ( localize(3252, "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(3212, "Move into New Window"))
624
+ title: ( localize(3253, "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(3213, "Copy into New Window"))
632
+ title: ( localize(3254, "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(3214, "Share")),
639
+ title: ( localize(3255, "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(3186, "Split Up"))
647
+ title: ( localize(3227, "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(3187, "Split Down"))
655
+ title: ( localize(3228, "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(3188, "Split Left"))
663
+ title: ( localize(3229, "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(3189, "Split Right"))
671
+ title: ( localize(3230, "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(3215, "Move Above"))
679
+ title: ( localize(3256, "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(3216, "Move Below"))
687
+ title: ( localize(3257, "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(3217, "Move Left"))
695
+ title: ( localize(3258, "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(3218, "Move Right"))
703
+ title: ( localize(3259, "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(3219, "Split in Group")),
711
+ title: ( localize(3260, "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(3220, "Join in Group")),
721
+ title: ( localize(3261, "Join in Group")),
722
722
  precondition: ( MultipleEditorsSelectedInGroupContext.negate())
723
723
  },
724
724
  group: "3_split_in_group",
@@ -728,17 +728,17 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
728
728
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
729
729
  command: {
730
730
  id: TOGGLE_DIFF_SIDE_BY_SIDE,
731
- title: ( localize(3221, "Inline View")),
731
+ title: ( localize(3262, "Inline View")),
732
732
  toggled: ( ContextKeyExpr.equals("config.diffEditor.renderSideBySide", false))
733
733
  },
734
734
  group: "1_diff",
735
735
  order: 10,
736
- when: ( ContextKeyExpr.has("isInDiffEditor"))
736
+ when: ( ContextKeyExpr.or(( ContextKeyExpr.has("isInDiffEditor")), ActiveCustomEditorDiffCanToggleLayoutContext))
737
737
  });
738
738
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
739
739
  command: {
740
740
  id: SHOW_EDITORS_IN_GROUP,
741
- title: ( localize(3222, "Show Opened Editors"))
741
+ title: ( localize(3263, "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(3206, "Close All"))
749
+ title: ( localize(3247, "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(3205, "Close Saved"))
757
+ title: ( localize(3246, "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(3223, "Enable Preview Editors")),
765
+ title: ( localize(3264, "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(3224, "Maximize Group"))
774
+ title: ( localize(3265, "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(3225, "Unmaximize Group"))
783
+ title: ( localize(3266, "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(3226, "Lock Group")),
792
+ title: ( localize(3267, "Lock Group")),
793
793
  toggled: ActiveEditorGroupLockedContext
794
794
  },
795
795
  group: "8_group_operations",
@@ -799,7 +799,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
799
799
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
800
800
  command: {
801
801
  id: ConfigureEditorAction.ID,
802
- title: ( localize(3227, "Configure Editors"))
802
+ title: ( localize(3268, "Configure Editors"))
803
803
  },
804
804
  group: "9_configure",
805
805
  order: 10
@@ -844,96 +844,101 @@ const SPLIT_ORDER = 100000;
844
844
  const CLOSE_ORDER = 1000000;
845
845
  appendEditorToolItem({
846
846
  id: SPLIT_EDITOR,
847
- title: ( localize(3228, "Split Editor Right")),
847
+ title: ( localize(3269, "Split Editor Right")),
848
848
  icon: Codicon.splitHorizontal
849
849
  }, ( SplitEditorsVertically.negate()), SPLIT_ORDER, {
850
850
  id: SPLIT_EDITOR_DOWN,
851
- title: ( localize(3229, "Split Editor Down")),
851
+ title: ( localize(3270, "Split Editor Down")),
852
852
  icon: Codicon.splitVertical
853
853
  });
854
854
  appendEditorToolItem({
855
855
  id: SPLIT_EDITOR,
856
- title: ( localize(3229, "Split Editor Down")),
856
+ title: ( localize(3270, "Split Editor Down")),
857
857
  icon: Codicon.splitVertical
858
858
  }, SplitEditorsVertically, SPLIT_ORDER, {
859
859
  id: SPLIT_EDITOR_RIGHT,
860
- title: ( localize(3228, "Split Editor Right")),
860
+ title: ( localize(3269, "Split Editor Right")),
861
861
  icon: Codicon.splitHorizontal
862
862
  });
863
863
  appendEditorToolItem({
864
864
  id: TOGGLE_SPLIT_EDITOR_IN_GROUP_LAYOUT,
865
- title: ( localize(3230, "Toggle Layout")),
865
+ title: ( localize(3271, "Toggle Layout")),
866
866
  icon: Codicon.editorLayout
867
867
  }, SideBySideEditorActiveContext, SPLIT_ORDER - 1);
868
868
  appendEditorToolItem({
869
869
  id: CLOSE_EDITOR_COMMAND_ID,
870
- title: ( localize(3192, "Close")),
870
+ title: ( localize(3233, "Close")),
871
871
  icon: Codicon.close
872
872
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ( ActiveEditorDirtyContext.toNegated()), ( ActiveEditorStickyContext.toNegated()))), CLOSE_ORDER, {
873
873
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
874
- title: ( localize(3206, "Close All")),
874
+ title: ( localize(3247, "Close All")),
875
875
  icon: Codicon.closeAll
876
876
  });
877
877
  appendEditorToolItem({
878
878
  id: CLOSE_EDITOR_COMMAND_ID,
879
- title: ( localize(3192, "Close")),
879
+ title: ( localize(3233, "Close")),
880
880
  icon: Codicon.closeDirty
881
881
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ActiveEditorDirtyContext, ( ActiveEditorStickyContext.toNegated()))), CLOSE_ORDER, {
882
882
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
883
- title: ( localize(3206, "Close All")),
883
+ title: ( localize(3247, "Close All")),
884
884
  icon: Codicon.closeAll
885
885
  });
886
886
  appendEditorToolItem({
887
887
  id: UNPIN_EDITOR_COMMAND_ID,
888
- title: ( localize(3210, "Unpin")),
888
+ title: ( localize(3251, "Unpin")),
889
889
  icon: Codicon.pinned
890
890
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ( ActiveEditorDirtyContext.toNegated()), ActiveEditorStickyContext)), CLOSE_ORDER, {
891
891
  id: CLOSE_EDITOR_COMMAND_ID,
892
- title: ( localize(3192, "Close")),
892
+ title: ( localize(3233, "Close")),
893
893
  icon: Codicon.close
894
894
  });
895
895
  appendEditorToolItem({
896
896
  id: UNPIN_EDITOR_COMMAND_ID,
897
- title: ( localize(3210, "Unpin")),
897
+ title: ( localize(3251, "Unpin")),
898
898
  icon: Codicon.pinnedDirty
899
899
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ActiveEditorDirtyContext, ActiveEditorStickyContext)), CLOSE_ORDER, {
900
900
  id: CLOSE_EDITOR_COMMAND_ID,
901
- title: ( localize(3192, "Close")),
901
+ title: ( localize(3233, "Close")),
902
902
  icon: Codicon.close
903
903
  });
904
904
  appendEditorToolItem({
905
905
  id: LOCK_GROUP_COMMAND_ID,
906
- title: ( localize(3231, "Lock Group")),
906
+ title: ( localize(3272, "Lock Group")),
907
907
  icon: Codicon.unlock
908
908
  }, ( ContextKeyExpr.and(IsAuxiliaryWindowContext, ( ActiveEditorGroupLockedContext.toNegated()))), CLOSE_ORDER - 1);
909
909
  appendEditorToolItem({
910
910
  id: UNLOCK_GROUP_COMMAND_ID,
911
- title: ( localize(3232, "Unlock Group")),
911
+ title: ( localize(3273, "Unlock Group")),
912
912
  icon: Codicon.lock,
913
913
  toggled: ContextKeyExpr.true()
914
914
  }, ActiveEditorGroupLockedContext, CLOSE_ORDER - 1);
915
- const previousChangeIcon = registerIcon("diff-editor-previous-change", Codicon.arrowUp, ( localize(3233, "Icon for the previous change action in the diff editor.")));
915
+ const previousChangeIcon = registerIcon("diff-editor-previous-change", Codicon.arrowUp, ( localize(3274, "Icon for the previous change action in the diff editor.")));
916
916
  appendEditorToolItem({
917
917
  id: GOTO_PREVIOUS_CHANGE,
918
- title: ( localize(3234, "Previous Change")),
918
+ title: ( localize(3275, "Previous Change")),
919
919
  icon: previousChangeIcon
920
920
  }, TextCompareEditorActiveContext, 10, undefined, EditorContextKeys.hasChanges, true, true);
921
- const nextChangeIcon = registerIcon("diff-editor-next-change", Codicon.arrowDown, ( localize(3235, "Icon for the next change action in the diff editor.")));
921
+ const nextChangeIcon = registerIcon("diff-editor-next-change", Codicon.arrowDown, ( localize(3276, "Icon for the next change action in the diff editor.")));
922
922
  appendEditorToolItem({
923
923
  id: GOTO_NEXT_CHANGE,
924
- title: ( localize(3236, "Next Change")),
924
+ title: ( localize(3277, "Next Change")),
925
925
  icon: nextChangeIcon
926
926
  }, TextCompareEditorActiveContext, 11, undefined, EditorContextKeys.hasChanges, true, true);
927
927
  appendEditorToolItem({
928
928
  id: DIFF_SWAP_SIDES,
929
- title: ( localize(3237, "Swap Left and Right Side")),
929
+ title: ( localize(3278, "Swap Left and Right Side")),
930
930
  icon: Codicon.arrowSwap
931
931
  }, ( ContextKeyExpr.and(TextCompareEditorActiveContext, ActiveCompareEditorCanSwapContext)), 15, undefined, undefined);
932
- const toggleWhitespace = registerIcon("diff-editor-toggle-whitespace", Codicon.whitespace, ( localize(3238, "Icon for the toggle whitespace action in the diff editor.")));
932
+ appendEditorToolItem({
933
+ id: ReOpenInTextEditorAction.ID,
934
+ title: ( localize(3279, "Reopen as Text")),
935
+ icon: Codicon.fileCode
936
+ }, ActiveCustomEditorTextDiffContext, 16, undefined, undefined);
937
+ const toggleWhitespace = registerIcon("diff-editor-toggle-whitespace", Codicon.whitespace, ( localize(3280, "Icon for the toggle whitespace action in the diff editor.")));
933
938
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
934
939
  command: {
935
940
  id: TOGGLE_DIFF_IGNORE_TRIM_WHITESPACE,
936
- title: ( localize(3239, "Show Leading/Trailing Whitespace Differences")),
941
+ title: ( localize(3281, "Show Leading/Trailing Whitespace Differences")),
937
942
  icon: toggleWhitespace,
938
943
  precondition: TextCompareEditorActiveContext,
939
944
  toggled: ( ContextKeyExpr.equals("config.diffEditor.ignoreTrimWhitespace", false))
@@ -945,7 +950,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
945
950
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
946
951
  command: {
947
952
  id: KEEP_EDITOR_COMMAND_ID,
948
- title: ( localize2(3240, "Keep Editor")),
953
+ title: ( localize2(3282, "Keep Editor")),
949
954
  category: Categories.View
950
955
  },
951
956
  when: ( ContextKeyExpr.has("config.workbench.editor.enablePreview"))
@@ -953,56 +958,56 @@ MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
953
958
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
954
959
  command: {
955
960
  id: PIN_EDITOR_COMMAND_ID,
956
- title: ( localize2(3241, "Pin Editor")),
961
+ title: ( localize2(3283, "Pin Editor")),
957
962
  category: Categories.View
958
963
  }
959
964
  });
960
965
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
961
966
  command: {
962
967
  id: UNPIN_EDITOR_COMMAND_ID,
963
- title: ( localize2(3242, "Unpin Editor")),
968
+ title: ( localize2(3284, "Unpin Editor")),
964
969
  category: Categories.View
965
970
  }
966
971
  });
967
972
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
968
973
  command: {
969
974
  id: CLOSE_EDITOR_COMMAND_ID,
970
- title: ( localize2(3243, "Close Editor")),
975
+ title: ( localize2(3285, "Close Editor")),
971
976
  category: Categories.View
972
977
  }
973
978
  });
974
979
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
975
980
  command: {
976
981
  id: CLOSE_PINNED_EDITOR_COMMAND_ID,
977
- title: ( localize2(3244, "Close Pinned Editor")),
982
+ title: ( localize2(3286, "Close Pinned Editor")),
978
983
  category: Categories.View
979
984
  }
980
985
  });
981
986
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
982
987
  command: {
983
988
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
984
- title: ( localize2(3245, "Close All Editors in Group")),
989
+ title: ( localize2(3287, "Close All Editors in Group")),
985
990
  category: Categories.View
986
991
  }
987
992
  });
988
993
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
989
994
  command: {
990
995
  id: CLOSE_SAVED_EDITORS_COMMAND_ID,
991
- title: ( localize2(3246, "Close Saved Editors in Group")),
996
+ title: ( localize2(3288, "Close Saved Editors in Group")),
992
997
  category: Categories.View
993
998
  }
994
999
  });
995
1000
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
996
1001
  command: {
997
1002
  id: CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID,
998
- title: ( localize2(3247, "Close Other Editors in Group")),
1003
+ title: ( localize2(3289, "Close Other Editors in Group")),
999
1004
  category: Categories.View
1000
1005
  }
1001
1006
  });
1002
1007
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1003
1008
  command: {
1004
1009
  id: CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID,
1005
- title: ( localize2(3248, "Close Editors to the Right in Group")),
1010
+ title: ( localize2(3290, "Close Editors to the Right in Group")),
1006
1011
  category: Categories.View
1007
1012
  },
1008
1013
  when: ( ActiveEditorLastInGroupContext.toNegated())
@@ -1010,7 +1015,7 @@ MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1010
1015
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1011
1016
  command: {
1012
1017
  id: CLOSE_EDITORS_AND_GROUP_COMMAND_ID,
1013
- title: ( localize2(3249, "Close Editor Group")),
1018
+ title: ( localize2(3291, "Close Editor Group")),
1014
1019
  category: Categories.View
1015
1020
  },
1016
1021
  when: MultipleEditorGroupsContext
@@ -1018,7 +1023,7 @@ MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1018
1023
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1019
1024
  command: {
1020
1025
  id: REOPEN_WITH_COMMAND_ID,
1021
- title: ( localize2(3207, "Reopen Editor With...")),
1026
+ title: ( localize2(3248, "Reopen Editor With...")),
1022
1027
  category: Categories.View
1023
1028
  },
1024
1029
  when: ActiveEditorAvailableEditorIdsContext
@@ -1027,7 +1032,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarRecentMenu, {
1027
1032
  group: "1_editor",
1028
1033
  command: {
1029
1034
  id: ReopenClosedEditorAction.ID,
1030
- title: ( localize(3250, "&&Reopen Closed Editor")),
1035
+ title: ( localize(3292, "&&Reopen Closed Editor")),
1031
1036
  precondition: ( ContextKeyExpr.has("canReopenClosedEditor"))
1032
1037
  },
1033
1038
  order: 1
@@ -1036,12 +1041,12 @@ MenuRegistry.appendMenuItem(MenuId.MenubarRecentMenu, {
1036
1041
  group: "z_clear",
1037
1042
  command: {
1038
1043
  id: ClearRecentFilesAction.ID,
1039
- title: ( localize(3251, "&&Clear Recently Opened..."))
1044
+ title: ( localize(3293, "&&Clear Recently Opened..."))
1040
1045
  },
1041
1046
  order: 1
1042
1047
  });
1043
1048
  MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
1044
- title: ( localize(3252, "Share")),
1049
+ title: ( localize(3294, "Share")),
1045
1050
  submenu: MenuId.MenubarShare,
1046
1051
  group: "45_share",
1047
1052
  order: 1,
@@ -1049,7 +1054,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
1049
1054
  });
1050
1055
  MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, {
1051
1056
  group: "2_appearance",
1052
- title: ( localize(3253, "Editor &&Layout")),
1057
+ title: ( localize(3295, "Editor &&Layout")),
1053
1058
  submenu: MenuId.MenubarLayoutMenu,
1054
1059
  order: 2,
1055
1060
  when: ( IsSessionsWindowContext.negate())
@@ -1059,8 +1064,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1059
1064
  command: {
1060
1065
  id: SPLIT_EDITOR_UP,
1061
1066
  title: {
1062
- ...( localize2(3254, "Split Up")),
1063
- mnemonicTitle: ( localize(3255, "Split &&Up"))
1067
+ ...( localize2(3296, "Split Up")),
1068
+ mnemonicTitle: ( localize(3297, "Split &&Up"))
1064
1069
  }
1065
1070
  },
1066
1071
  order: 1
@@ -1070,8 +1075,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1070
1075
  command: {
1071
1076
  id: SPLIT_EDITOR_DOWN,
1072
1077
  title: {
1073
- ...( localize2(3256, "Split Down")),
1074
- mnemonicTitle: ( localize(3257, "Split &&Down"))
1078
+ ...( localize2(3298, "Split Down")),
1079
+ mnemonicTitle: ( localize(3299, "Split &&Down"))
1075
1080
  }
1076
1081
  },
1077
1082
  order: 2
@@ -1081,8 +1086,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1081
1086
  command: {
1082
1087
  id: SPLIT_EDITOR_LEFT,
1083
1088
  title: {
1084
- ...( localize2(3258, "Split Left")),
1085
- mnemonicTitle: ( localize(3259, "Split &&Left"))
1089
+ ...( localize2(3300, "Split Left")),
1090
+ mnemonicTitle: ( localize(3301, "Split &&Left"))
1086
1091
  }
1087
1092
  },
1088
1093
  order: 3
@@ -1092,8 +1097,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1092
1097
  command: {
1093
1098
  id: SPLIT_EDITOR_RIGHT,
1094
1099
  title: {
1095
- ...( localize2(3260, "Split Right")),
1096
- mnemonicTitle: ( localize(3261, "Split &&Right"))
1100
+ ...( localize2(3302, "Split Right")),
1101
+ mnemonicTitle: ( localize(3303, "Split &&Right"))
1097
1102
  }
1098
1103
  },
1099
1104
  order: 4
@@ -1103,8 +1108,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1103
1108
  command: {
1104
1109
  id: SPLIT_EDITOR_IN_GROUP,
1105
1110
  title: {
1106
- ...( localize2(3262, "Split in Group")),
1107
- mnemonicTitle: ( localize(3263, "Split in &&Group"))
1111
+ ...( localize2(3304, "Split in Group")),
1112
+ mnemonicTitle: ( localize(3305, "Split in &&Group"))
1108
1113
  }
1109
1114
  },
1110
1115
  when: ActiveEditorCanSplitInGroupContext,
@@ -1115,8 +1120,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1115
1120
  command: {
1116
1121
  id: JOIN_EDITOR_IN_GROUP,
1117
1122
  title: {
1118
- ...( localize2(3264, "Join in Group")),
1119
- mnemonicTitle: ( localize(3265, "Join in &&Group"))
1123
+ ...( localize2(3306, "Join in Group")),
1124
+ mnemonicTitle: ( localize(3307, "Join in &&Group"))
1120
1125
  }
1121
1126
  },
1122
1127
  when: SideBySideEditorActiveContext,
@@ -1127,8 +1132,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1127
1132
  command: {
1128
1133
  id: MOVE_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
1129
1134
  title: {
1130
- ...( localize2(3266, "Move Editor into New Window")),
1131
- mnemonicTitle: ( localize(3267, "&&Move Editor into New Window"))
1135
+ ...( localize2(3308, "Move Editor into New Window")),
1136
+ mnemonicTitle: ( localize(3309, "&&Move Editor into New Window"))
1132
1137
  }
1133
1138
  },
1134
1139
  order: 1
@@ -1138,8 +1143,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1138
1143
  command: {
1139
1144
  id: COPY_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
1140
1145
  title: {
1141
- ...( localize2(3268, "Copy Editor into New Window")),
1142
- mnemonicTitle: ( localize(3269, "&&Copy Editor into New Window"))
1146
+ ...( localize2(3310, "Copy Editor into New Window")),
1147
+ mnemonicTitle: ( localize(3311, "&&Copy Editor into New Window"))
1143
1148
  }
1144
1149
  },
1145
1150
  order: 2
@@ -1149,8 +1154,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1149
1154
  command: {
1150
1155
  id: EditorLayoutSingleAction.ID,
1151
1156
  title: {
1152
- ...( localize2(3270, "Single")),
1153
- mnemonicTitle: ( localize(3271, "&&Single"))
1157
+ ...( localize2(3312, "Single")),
1158
+ mnemonicTitle: ( localize(3313, "&&Single"))
1154
1159
  }
1155
1160
  },
1156
1161
  order: 1
@@ -1160,8 +1165,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1160
1165
  command: {
1161
1166
  id: EditorLayoutTwoColumnsAction.ID,
1162
1167
  title: {
1163
- ...( localize2(3272, "Two Columns")),
1164
- mnemonicTitle: ( localize(3273, "&&Two Columns"))
1168
+ ...( localize2(3314, "Two Columns")),
1169
+ mnemonicTitle: ( localize(3315, "&&Two Columns"))
1165
1170
  }
1166
1171
  },
1167
1172
  order: 3
@@ -1171,8 +1176,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1171
1176
  command: {
1172
1177
  id: EditorLayoutThreeColumnsAction.ID,
1173
1178
  title: {
1174
- ...( localize2(3274, "Three Columns")),
1175
- mnemonicTitle: ( localize(3275, "T&&hree Columns"))
1179
+ ...( localize2(3316, "Three Columns")),
1180
+ mnemonicTitle: ( localize(3317, "T&&hree Columns"))
1176
1181
  }
1177
1182
  },
1178
1183
  order: 4
@@ -1182,8 +1187,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1182
1187
  command: {
1183
1188
  id: EditorLayoutTwoRowsAction.ID,
1184
1189
  title: {
1185
- ...( localize2(3276, "Two Rows")),
1186
- mnemonicTitle: ( localize(3277, "T&&wo Rows"))
1190
+ ...( localize2(3318, "Two Rows")),
1191
+ mnemonicTitle: ( localize(3319, "T&&wo Rows"))
1187
1192
  }
1188
1193
  },
1189
1194
  order: 5
@@ -1193,8 +1198,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1193
1198
  command: {
1194
1199
  id: EditorLayoutThreeRowsAction.ID,
1195
1200
  title: {
1196
- ...( localize2(3278, "Three Rows")),
1197
- mnemonicTitle: ( localize(3279, "Three &&Rows"))
1201
+ ...( localize2(3320, "Three Rows")),
1202
+ mnemonicTitle: ( localize(3321, "Three &&Rows"))
1198
1203
  }
1199
1204
  },
1200
1205
  order: 6
@@ -1204,8 +1209,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1204
1209
  command: {
1205
1210
  id: EditorLayoutTwoByTwoGridAction.ID,
1206
1211
  title: {
1207
- ...( localize2(3280, "Grid (2x2)")),
1208
- mnemonicTitle: ( localize(3281, "&&Grid (2x2)"))
1212
+ ...( localize2(3322, "Grid (2x2)")),
1213
+ mnemonicTitle: ( localize(3323, "&&Grid (2x2)"))
1209
1214
  }
1210
1215
  },
1211
1216
  order: 7
@@ -1215,8 +1220,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1215
1220
  command: {
1216
1221
  id: EditorLayoutTwoRowsRightAction.ID,
1217
1222
  title: {
1218
- ...( localize2(3282, "Two Rows Right")),
1219
- mnemonicTitle: ( localize(3283, "Two R&&ows Right"))
1223
+ ...( localize2(3324, "Two Rows Right")),
1224
+ mnemonicTitle: ( localize(3325, "Two R&&ows Right"))
1220
1225
  }
1221
1226
  },
1222
1227
  order: 8
@@ -1226,8 +1231,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1226
1231
  command: {
1227
1232
  id: EditorLayoutTwoColumnsBottomAction.ID,
1228
1233
  title: {
1229
- ...( localize2(3284, "Two Columns Bottom")),
1230
- mnemonicTitle: ( localize(3285, "Two &&Columns Bottom"))
1234
+ ...( localize2(3326, "Two Columns Bottom")),
1235
+ mnemonicTitle: ( localize(3327, "Two &&Columns Bottom"))
1231
1236
  }
1232
1237
  },
1233
1238
  order: 9
@@ -1236,7 +1241,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
1236
1241
  group: "1_history_nav",
1237
1242
  command: {
1238
1243
  id: "workbench.action.navigateToLastEditLocation",
1239
- title: ( localize(3286, "&&Last Edit Location")),
1244
+ title: ( localize(3328, "&&Last Edit Location")),
1240
1245
  precondition: ( ContextKeyExpr.has("canNavigateToLastEditLocation"))
1241
1246
  },
1242
1247
  order: 3
@@ -1245,7 +1250,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1245
1250
  group: "1_sideBySide",
1246
1251
  command: {
1247
1252
  id: FOCUS_FIRST_SIDE_EDITOR,
1248
- title: ( localize(3287, "&&First Side in Editor"))
1253
+ title: ( localize(3329, "&&First Side in Editor"))
1249
1254
  },
1250
1255
  when: ( ContextKeyExpr.or(SideBySideEditorActiveContext, TextCompareEditorActiveContext)),
1251
1256
  order: 1
@@ -1254,7 +1259,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1254
1259
  group: "1_sideBySide",
1255
1260
  command: {
1256
1261
  id: FOCUS_SECOND_SIDE_EDITOR,
1257
- title: ( localize(3288, "&&Second Side in Editor"))
1262
+ title: ( localize(3330, "&&Second Side in Editor"))
1258
1263
  },
1259
1264
  when: ( ContextKeyExpr.or(SideBySideEditorActiveContext, TextCompareEditorActiveContext)),
1260
1265
  order: 2
@@ -1263,7 +1268,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1263
1268
  group: "2_any",
1264
1269
  command: {
1265
1270
  id: "workbench.action.nextEditor",
1266
- title: ( localize(3289, "&&Next Editor"))
1271
+ title: ( localize(3331, "&&Next Editor"))
1267
1272
  },
1268
1273
  order: 1
1269
1274
  });
@@ -1271,7 +1276,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1271
1276
  group: "2_any",
1272
1277
  command: {
1273
1278
  id: "workbench.action.previousEditor",
1274
- title: ( localize(3290, "&&Previous Editor"))
1279
+ title: ( localize(3332, "&&Previous Editor"))
1275
1280
  },
1276
1281
  order: 2
1277
1282
  });
@@ -1279,7 +1284,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1279
1284
  group: "3_any_used",
1280
1285
  command: {
1281
1286
  id: "workbench.action.openNextRecentlyUsedEditor",
1282
- title: ( localize(3291, "&&Next Used Editor"))
1287
+ title: ( localize(3333, "&&Next Used Editor"))
1283
1288
  },
1284
1289
  order: 1
1285
1290
  });
@@ -1287,7 +1292,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1287
1292
  group: "3_any_used",
1288
1293
  command: {
1289
1294
  id: "workbench.action.openPreviousRecentlyUsedEditor",
1290
- title: ( localize(3292, "&&Previous Used Editor"))
1295
+ title: ( localize(3334, "&&Previous Used Editor"))
1291
1296
  },
1292
1297
  order: 2
1293
1298
  });
@@ -1295,7 +1300,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1295
1300
  group: "4_group",
1296
1301
  command: {
1297
1302
  id: "workbench.action.nextEditorInGroup",
1298
- title: ( localize(3293, "&&Next Editor in Group"))
1303
+ title: ( localize(3335, "&&Next Editor in Group"))
1299
1304
  },
1300
1305
  order: 1
1301
1306
  });
@@ -1303,7 +1308,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1303
1308
  group: "4_group",
1304
1309
  command: {
1305
1310
  id: "workbench.action.previousEditorInGroup",
1306
- title: ( localize(3294, "&&Previous Editor in Group"))
1311
+ title: ( localize(3336, "&&Previous Editor in Group"))
1307
1312
  },
1308
1313
  order: 2
1309
1314
  });
@@ -1311,7 +1316,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1311
1316
  group: "5_group_used",
1312
1317
  command: {
1313
1318
  id: "workbench.action.openNextRecentlyUsedEditorInGroup",
1314
- title: ( localize(3295, "&&Next Used Editor in Group"))
1319
+ title: ( localize(3337, "&&Next Used Editor in Group"))
1315
1320
  },
1316
1321
  order: 1
1317
1322
  });
@@ -1319,13 +1324,13 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1319
1324
  group: "5_group_used",
1320
1325
  command: {
1321
1326
  id: "workbench.action.openPreviousRecentlyUsedEditorInGroup",
1322
- title: ( localize(3296, "&&Previous Used Editor in Group"))
1327
+ title: ( localize(3338, "&&Previous Used Editor in Group"))
1323
1328
  },
1324
1329
  order: 2
1325
1330
  });
1326
1331
  MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
1327
1332
  group: "2_editor_nav",
1328
- title: ( localize(3297, "Switch &&Editor")),
1333
+ title: ( localize(3339, "Switch &&Editor")),
1329
1334
  submenu: MenuId.MenubarSwitchEditorMenu,
1330
1335
  order: 1
1331
1336
  });
@@ -1333,7 +1338,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1333
1338
  group: "1_focus_index",
1334
1339
  command: {
1335
1340
  id: "workbench.action.focusFirstEditorGroup",
1336
- title: ( localize(3298, "Group &&1"))
1341
+ title: ( localize(3340, "Group &&1"))
1337
1342
  },
1338
1343
  order: 1
1339
1344
  });
@@ -1341,7 +1346,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1341
1346
  group: "1_focus_index",
1342
1347
  command: {
1343
1348
  id: "workbench.action.focusSecondEditorGroup",
1344
- title: ( localize(3299, "Group &&2"))
1349
+ title: ( localize(3341, "Group &&2"))
1345
1350
  },
1346
1351
  order: 2
1347
1352
  });
@@ -1349,7 +1354,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1349
1354
  group: "1_focus_index",
1350
1355
  command: {
1351
1356
  id: "workbench.action.focusThirdEditorGroup",
1352
- title: ( localize(3300, "Group &&3")),
1357
+ title: ( localize(3342, "Group &&3")),
1353
1358
  precondition: MultipleEditorGroupsContext
1354
1359
  },
1355
1360
  order: 3
@@ -1358,7 +1363,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1358
1363
  group: "1_focus_index",
1359
1364
  command: {
1360
1365
  id: "workbench.action.focusFourthEditorGroup",
1361
- title: ( localize(3301, "Group &&4")),
1366
+ title: ( localize(3343, "Group &&4")),
1362
1367
  precondition: MultipleEditorGroupsContext
1363
1368
  },
1364
1369
  order: 4
@@ -1367,7 +1372,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1367
1372
  group: "1_focus_index",
1368
1373
  command: {
1369
1374
  id: "workbench.action.focusFifthEditorGroup",
1370
- title: ( localize(3302, "Group &&5")),
1375
+ title: ( localize(3344, "Group &&5")),
1371
1376
  precondition: MultipleEditorGroupsContext
1372
1377
  },
1373
1378
  order: 5
@@ -1376,7 +1381,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1376
1381
  group: "2_next_prev",
1377
1382
  command: {
1378
1383
  id: "workbench.action.focusNextGroup",
1379
- title: ( localize(3303, "&&Next Group")),
1384
+ title: ( localize(3345, "&&Next Group")),
1380
1385
  precondition: MultipleEditorGroupsContext
1381
1386
  },
1382
1387
  order: 1
@@ -1385,7 +1390,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1385
1390
  group: "2_next_prev",
1386
1391
  command: {
1387
1392
  id: "workbench.action.focusPreviousGroup",
1388
- title: ( localize(3304, "&&Previous Group")),
1393
+ title: ( localize(3346, "&&Previous Group")),
1389
1394
  precondition: MultipleEditorGroupsContext
1390
1395
  },
1391
1396
  order: 2
@@ -1394,7 +1399,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1394
1399
  group: "3_directional",
1395
1400
  command: {
1396
1401
  id: "workbench.action.focusLeftGroup",
1397
- title: ( localize(3305, "Group &&Left")),
1402
+ title: ( localize(3347, "Group &&Left")),
1398
1403
  precondition: MultipleEditorGroupsContext
1399
1404
  },
1400
1405
  order: 1
@@ -1403,7 +1408,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1403
1408
  group: "3_directional",
1404
1409
  command: {
1405
1410
  id: "workbench.action.focusRightGroup",
1406
- title: ( localize(3306, "Group &&Right")),
1411
+ title: ( localize(3348, "Group &&Right")),
1407
1412
  precondition: MultipleEditorGroupsContext
1408
1413
  },
1409
1414
  order: 2
@@ -1412,7 +1417,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1412
1417
  group: "3_directional",
1413
1418
  command: {
1414
1419
  id: "workbench.action.focusAboveGroup",
1415
- title: ( localize(3307, "Group &&Above")),
1420
+ title: ( localize(3349, "Group &&Above")),
1416
1421
  precondition: MultipleEditorGroupsContext
1417
1422
  },
1418
1423
  order: 3
@@ -1421,14 +1426,14 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1421
1426
  group: "3_directional",
1422
1427
  command: {
1423
1428
  id: "workbench.action.focusBelowGroup",
1424
- title: ( localize(3308, "Group &&Below")),
1429
+ title: ( localize(3350, "Group &&Below")),
1425
1430
  precondition: MultipleEditorGroupsContext
1426
1431
  },
1427
1432
  order: 4
1428
1433
  });
1429
1434
  MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
1430
1435
  group: "2_editor_nav",
1431
- title: ( localize(3309, "Switch &&Group")),
1436
+ title: ( localize(3351, "Switch &&Group")),
1432
1437
  submenu: MenuId.MenubarSwitchGroupMenu,
1433
1438
  order: 2
1434
1439
  });