@codingame/monaco-vscode-view-common-service-override 18.4.0 → 19.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.
- package/index.js +5 -5
- package/package.json +42 -42
- package/vscode/src/vs/workbench/api/browser/viewsExtensionPoint.js +59 -59
- package/vscode/src/vs/workbench/browser/actions/listCommands.js +3 -3
- package/vscode/src/vs/workbench/browser/actions/navigationActions.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/editor/editor.contribution.js +168 -168
- package/vscode/src/vs/workbench/browser/parts/editor/editorConfiguration.js +8 -8
- package/vscode/src/vs/workbench/browser/parts/paneCompositePartService.js +2 -2
- package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchy.contribution.js +12 -12
- package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyPeek.js +5 -5
- package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyTree.js +3 -3
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInputFactory.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInputFactory.js +2 -2
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditors.js +4 -4
- package/vscode/src/vs/workbench/contrib/customEditor/common/contributedCustomEditors.js +1 -1
- package/vscode/src/vs/workbench/contrib/customEditor/common/customEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/customEditor/common/customEditorModelManager.d.ts +0 -3
- package/vscode/src/vs/workbench/contrib/customEditor/common/customEditorModelManager.js +1 -3
- package/vscode/src/vs/workbench/contrib/customEditor/common/extensionPoint.js +12 -12
- package/vscode/src/vs/workbench/contrib/languageStatus/browser/languageStatus.js +7 -7
- package/vscode/src/vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution.js +8 -8
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.js +29 -29
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/devCommands.js +14 -14
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/colors.js +13 -13
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView.js +3 -3
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView.js +11 -11
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView.js +5 -5
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/mergeEditor.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/mergeEditor.js +2 -2
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/viewModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/preferences/browser/keyboardLayoutPicker.js +12 -12
- package/vscode/src/vs/workbench/contrib/sash/browser/sash.contribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchy.contribution.js +10 -10
- package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyPeek.js +5 -5
- package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyTree.js +3 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/overlayWebview.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webview/browser/overlayWebview.js +1 -1
- package/vscode/src/vs/workbench/contrib/webview/browser/themeing.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webview/browser/themeing.js +4 -2
- package/vscode/src/vs/workbench/contrib/webview/browser/webviewElement.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webview/browser/webviewElement.js +2 -2
- package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindWidget.js +1 -1
- package/vscode/src/vs/workbench/contrib/webview/browser/webviewService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewCommands.js +7 -7
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInputSerializer.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInputSerializer.js +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/webviewView/browser/webviewViewPane.js +2 -2
- package/vscode/src/vs/workbench/contrib/webviewView/browser/webviewViewService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/editor/browser/editorResolverService.js +9 -9
- package/vscode/src/vs/workbench/services/history/browser/historyService.js +10 -10
- package/vscode/src/vs/workbench/services/progress/browser/progressService.js +8 -8
- package/vscode/src/vs/workbench/services/untitled/common/untitledTextEditorHandler.d.ts +2 -2
- package/vscode/src/vs/workbench/services/untitled/common/untitledTextEditorHandler.js +2 -2
- package/vscode/src/vs/workbench/services/views/browser/viewDescriptorService.js +5 -5
|
@@ -6,20 +6,20 @@ import { EditorExtensions } from '@codingame/monaco-vscode-api/vscode/vs/workben
|
|
|
6
6
|
import { IsAuxiliaryWindowContext, ActiveEditorGroupLockedContext, EditorPartMultipleEditorGroupsContext, MultipleEditorGroupsContext, InEditorZenModeContext, EditorGroupEditorsCountContext, EditorTabsVisibleContext, ActiveEditorLastInGroupContext, MultipleEditorsSelectedInGroupContext, ActiveEditorAvailableEditorIdsContext, ActiveEditorPinnedContext, ActiveEditorStickyContext, ActiveEditorCanSplitInGroupContext, SideBySideEditorActiveContext, EditorPartMaximizedEditorGroupContext, ActiveEditorDirtyContext, TextCompareEditorActiveContext, ActiveCompareEditorCanSwapContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
|
|
7
7
|
import { SideBySideEditorInput, SideBySideEditorInputSerializer } from '@codingame/monaco-vscode-9c72783f-914c-50be-b9ef-da16356d81a8-common/vscode/vs/workbench/common/editor/sideBySideEditorInput';
|
|
8
8
|
import { TextResourceEditor } from '@codingame/monaco-vscode-523730aa-81e6-55d7-9916-87ad537fe087-common/vscode/vs/workbench/browser/parts/editor/textResourceEditor';
|
|
9
|
-
import { SideBySideEditor } from '@codingame/monaco-vscode-
|
|
9
|
+
import { SideBySideEditor } from '@codingame/monaco-vscode-bc6d9a89-1625-5010-b57e-ff44151144fe-common/vscode/vs/workbench/browser/parts/editor/sideBySideEditor';
|
|
10
10
|
import { DiffEditorInput, DiffEditorInputSerializer } from '@codingame/monaco-vscode-9c72783f-914c-50be-b9ef-da16356d81a8-common/vscode/vs/workbench/common/editor/diffEditorInput';
|
|
11
|
-
import { UntitledTextEditorInput } from '@codingame/monaco-vscode-
|
|
12
|
-
import { TextResourceEditorInput } from '@codingame/monaco-vscode-
|
|
13
|
-
import { TextDiffEditor } from '@codingame/monaco-vscode-
|
|
11
|
+
import { UntitledTextEditorInput } from '@codingame/monaco-vscode-ddbd4d51-94af-51e5-96b5-f2166ed67ad0-common/vscode/vs/workbench/services/untitled/common/untitledTextEditorInput';
|
|
12
|
+
import { TextResourceEditorInput } from '@codingame/monaco-vscode-86d65fc6-30f9-5dca-9501-e249de688591-common/vscode/vs/workbench/common/editor/textResourceEditorInput';
|
|
13
|
+
import { TextDiffEditor } from '@codingame/monaco-vscode-dbfe5f85-b426-55ed-a79b-5f811b395762-common/vscode/vs/workbench/browser/parts/editor/textDiffEditor';
|
|
14
14
|
import { BinaryResourceDiffEditor } from '@codingame/monaco-vscode-3109a756-1f83-5d09-945b-9f0fcad928f0-common/vscode/vs/workbench/browser/parts/editor/binaryDiffEditor';
|
|
15
15
|
import { EditorStatusContribution, ChangeLanguageAction, ChangeEOLAction, ChangeEncodingAction } from '@codingame/monaco-vscode-3109a756-1f83-5d09-945b-9f0fcad928f0-common/vscode/vs/workbench/browser/parts/editor/editorStatus';
|
|
16
16
|
import { Categories } from '@codingame/monaco-vscode-api/vscode/vs/platform/action/common/actionCommonCategories';
|
|
17
17
|
import { registerAction2, MenuRegistry, MenuId } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
18
18
|
import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
|
|
19
19
|
import { KeyMod, KeyCode } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
|
|
20
|
-
import { ShowEditorsInActiveGroupByMostRecentlyUsedAction, ShowAllEditorsByAppearanceAction, ShowAllEditorsByMostRecentlyUsedAction, NavigateForwardAction, NavigateBackwardsAction, OpenNextEditor, OpenPreviousEditor, OpenNextEditorInGroup, OpenPreviousEditorInGroup, OpenFirstEditorInGroup, OpenLastEditorInGroup, OpenNextRecentlyUsedEditorAction, OpenPreviousRecentlyUsedEditorAction, OpenNextRecentlyUsedEditorInGroupAction, OpenPreviousRecentlyUsedEditorInGroupAction, ReopenClosedEditorAction, ClearRecentFilesAction, CloseAllEditorsAction, CloseAllEditorGroupsAction, CloseLeftEditorsInGroupAction, CloseEditorsInOtherGroupsAction, CloseEditorInAllGroupsAction, RevertAndCloseEditorAction, SplitEditorAction, SplitEditorOrthogonalAction, SplitEditorLeftAction, SplitEditorRightAction, SplitEditorUpAction, SplitEditorDownAction, JoinTwoGroupsAction, JoinAllGroupsAction, NavigateBetweenGroupsAction, ResetGroupSizesAction, ToggleGroupSizesAction, MaximizeGroupHideSidebarAction, ToggleMaximizeEditorGroupAction, MinimizeOtherGroupsAction, MinimizeOtherGroupsHideSidebarAction, MoveEditorLeftInGroupAction, MoveEditorRightInGroupAction, MoveGroupLeftAction, MoveGroupRightAction, MoveGroupUpAction, MoveGroupDownAction, DuplicateGroupLeftAction, DuplicateGroupRightAction, DuplicateGroupUpAction, DuplicateGroupDownAction, MoveEditorToPreviousGroupAction, MoveEditorToNextGroupAction, MoveEditorToFirstGroupAction, MoveEditorToLastGroupAction, MoveEditorToLeftGroupAction, MoveEditorToRightGroupAction, MoveEditorToAboveGroupAction, MoveEditorToBelowGroupAction, SplitEditorToPreviousGroupAction, SplitEditorToNextGroupAction, SplitEditorToFirstGroupAction, SplitEditorToLastGroupAction, SplitEditorToLeftGroupAction, SplitEditorToRightGroupAction, SplitEditorToAboveGroupAction, SplitEditorToBelowGroupAction, FocusActiveGroupAction, FocusFirstGroupAction, FocusLastGroupAction, FocusPreviousGroup, FocusNextGroup, FocusLeftGroup, FocusRightGroup, FocusAboveGroup, FocusBelowGroup, NewEditorGroupLeftAction, NewEditorGroupRightAction, NewEditorGroupAboveAction, NewEditorGroupBelowAction, NavigatePreviousAction, NavigateForwardInEditsAction, NavigateBackwardsInEditsAction, NavigatePreviousInEditsAction, NavigateToLastEditLocationAction, NavigateForwardInNavigationsAction, NavigateBackwardsInNavigationsAction, NavigatePreviousInNavigationsAction, NavigateToLastNavigationLocationAction, ClearEditorHistoryAction, EditorLayoutSingleAction, EditorLayoutTwoColumnsAction, EditorLayoutThreeColumnsAction, EditorLayoutTwoRowsAction, EditorLayoutThreeRowsAction, EditorLayoutTwoByTwoGridAction, EditorLayoutTwoRowsRightAction, EditorLayoutTwoColumnsBottomAction, ToggleEditorTypeAction, ReOpenInTextEditorAction, QuickAccessPreviousRecentlyUsedEditorAction, QuickAccessLeastRecentlyUsedEditorAction, QuickAccessPreviousRecentlyUsedEditorInGroupAction, QuickAccessLeastRecentlyUsedEditorInGroupAction, QuickAccessPreviousEditorFromHistoryAction, MoveEditorToNewWindowAction, CopyEditorToNewindowAction, MoveEditorGroupToNewWindowAction, CopyEditorGroupToNewWindowAction, RestoreEditorsToMainWindowAction, NewEmptyEditorWindowAction } from '@codingame/monaco-vscode-
|
|
21
|
-
import { setup, LOCK_GROUP_COMMAND_ID, UNLOCK_GROUP_COMMAND_ID, CLOSE_EDITOR_GROUP_COMMAND_ID, SPLIT_EDITOR_UP, SPLIT_EDITOR_DOWN, SPLIT_EDITOR_LEFT, SPLIT_EDITOR_RIGHT, NEW_EMPTY_EDITOR_WINDOW_COMMAND_ID, TOGGLE_LOCK_GROUP_COMMAND_ID, MOVE_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID, COPY_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID, CLOSE_EDITOR_COMMAND_ID, CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID, CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID, CLOSE_SAVED_EDITORS_COMMAND_ID, CLOSE_EDITORS_IN_GROUP_COMMAND_ID, REOPEN_WITH_COMMAND_ID, KEEP_EDITOR_COMMAND_ID, PIN_EDITOR_COMMAND_ID, UNPIN_EDITOR_COMMAND_ID, SPLIT_EDITOR_IN_GROUP, JOIN_EDITOR_IN_GROUP, MOVE_EDITOR_INTO_NEW_WINDOW_COMMAND_ID, COPY_EDITOR_INTO_NEW_WINDOW_COMMAND_ID, SHOW_EDITORS_IN_GROUP, TOGGLE_KEEP_EDITORS_COMMAND_ID, TOGGLE_MAXIMIZE_EDITOR_GROUP, SPLIT_EDITOR, TOGGLE_SPLIT_EDITOR_IN_GROUP_LAYOUT, CLOSE_PINNED_EDITOR_COMMAND_ID, CLOSE_EDITORS_AND_GROUP_COMMAND_ID, FOCUS_FIRST_SIDE_EDITOR, FOCUS_SECOND_SIDE_EDITOR } from '@codingame/monaco-vscode-
|
|
22
|
-
import { TOGGLE_DIFF_SIDE_BY_SIDE, GOTO_PREVIOUS_CHANGE, GOTO_NEXT_CHANGE, DIFF_SWAP_SIDES, TOGGLE_DIFF_IGNORE_TRIM_WHITESPACE } from '@codingame/monaco-vscode-
|
|
20
|
+
import { ShowEditorsInActiveGroupByMostRecentlyUsedAction, ShowAllEditorsByAppearanceAction, ShowAllEditorsByMostRecentlyUsedAction, NavigateForwardAction, NavigateBackwardsAction, OpenNextEditor, OpenPreviousEditor, OpenNextEditorInGroup, OpenPreviousEditorInGroup, OpenFirstEditorInGroup, OpenLastEditorInGroup, OpenNextRecentlyUsedEditorAction, OpenPreviousRecentlyUsedEditorAction, OpenNextRecentlyUsedEditorInGroupAction, OpenPreviousRecentlyUsedEditorInGroupAction, ReopenClosedEditorAction, ClearRecentFilesAction, CloseAllEditorsAction, CloseAllEditorGroupsAction, CloseLeftEditorsInGroupAction, CloseEditorsInOtherGroupsAction, CloseEditorInAllGroupsAction, RevertAndCloseEditorAction, SplitEditorAction, SplitEditorOrthogonalAction, SplitEditorLeftAction, SplitEditorRightAction, SplitEditorUpAction, SplitEditorDownAction, JoinTwoGroupsAction, JoinAllGroupsAction, NavigateBetweenGroupsAction, ResetGroupSizesAction, ToggleGroupSizesAction, MaximizeGroupHideSidebarAction, ToggleMaximizeEditorGroupAction, MinimizeOtherGroupsAction, MinimizeOtherGroupsHideSidebarAction, MoveEditorLeftInGroupAction, MoveEditorRightInGroupAction, MoveGroupLeftAction, MoveGroupRightAction, MoveGroupUpAction, MoveGroupDownAction, DuplicateGroupLeftAction, DuplicateGroupRightAction, DuplicateGroupUpAction, DuplicateGroupDownAction, MoveEditorToPreviousGroupAction, MoveEditorToNextGroupAction, MoveEditorToFirstGroupAction, MoveEditorToLastGroupAction, MoveEditorToLeftGroupAction, MoveEditorToRightGroupAction, MoveEditorToAboveGroupAction, MoveEditorToBelowGroupAction, SplitEditorToPreviousGroupAction, SplitEditorToNextGroupAction, SplitEditorToFirstGroupAction, SplitEditorToLastGroupAction, SplitEditorToLeftGroupAction, SplitEditorToRightGroupAction, SplitEditorToAboveGroupAction, SplitEditorToBelowGroupAction, FocusActiveGroupAction, FocusFirstGroupAction, FocusLastGroupAction, FocusPreviousGroup, FocusNextGroup, FocusLeftGroup, FocusRightGroup, FocusAboveGroup, FocusBelowGroup, NewEditorGroupLeftAction, NewEditorGroupRightAction, NewEditorGroupAboveAction, NewEditorGroupBelowAction, NavigatePreviousAction, NavigateForwardInEditsAction, NavigateBackwardsInEditsAction, NavigatePreviousInEditsAction, NavigateToLastEditLocationAction, NavigateForwardInNavigationsAction, NavigateBackwardsInNavigationsAction, NavigatePreviousInNavigationsAction, NavigateToLastNavigationLocationAction, ClearEditorHistoryAction, EditorLayoutSingleAction, EditorLayoutTwoColumnsAction, EditorLayoutThreeColumnsAction, EditorLayoutTwoRowsAction, EditorLayoutThreeRowsAction, EditorLayoutTwoByTwoGridAction, EditorLayoutTwoRowsRightAction, EditorLayoutTwoColumnsBottomAction, ToggleEditorTypeAction, ReOpenInTextEditorAction, QuickAccessPreviousRecentlyUsedEditorAction, QuickAccessLeastRecentlyUsedEditorAction, QuickAccessPreviousRecentlyUsedEditorInGroupAction, QuickAccessLeastRecentlyUsedEditorInGroupAction, QuickAccessPreviousEditorFromHistoryAction, MoveEditorToNewWindowAction, CopyEditorToNewindowAction, MoveEditorGroupToNewWindowAction, CopyEditorGroupToNewWindowAction, RestoreEditorsToMainWindowAction, NewEmptyEditorWindowAction } from '@codingame/monaco-vscode-33de3d75-8b1a-53f0-9e27-0c71c327e1a1-common/vscode/vs/workbench/browser/parts/editor/editorActions';
|
|
21
|
+
import { setup, LOCK_GROUP_COMMAND_ID, UNLOCK_GROUP_COMMAND_ID, CLOSE_EDITOR_GROUP_COMMAND_ID, SPLIT_EDITOR_UP, SPLIT_EDITOR_DOWN, SPLIT_EDITOR_LEFT, SPLIT_EDITOR_RIGHT, NEW_EMPTY_EDITOR_WINDOW_COMMAND_ID, TOGGLE_LOCK_GROUP_COMMAND_ID, MOVE_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID, COPY_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID, CLOSE_EDITOR_COMMAND_ID, CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID, CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID, CLOSE_SAVED_EDITORS_COMMAND_ID, CLOSE_EDITORS_IN_GROUP_COMMAND_ID, REOPEN_WITH_COMMAND_ID, KEEP_EDITOR_COMMAND_ID, PIN_EDITOR_COMMAND_ID, UNPIN_EDITOR_COMMAND_ID, SPLIT_EDITOR_IN_GROUP, JOIN_EDITOR_IN_GROUP, MOVE_EDITOR_INTO_NEW_WINDOW_COMMAND_ID, COPY_EDITOR_INTO_NEW_WINDOW_COMMAND_ID, SHOW_EDITORS_IN_GROUP, TOGGLE_KEEP_EDITORS_COMMAND_ID, TOGGLE_MAXIMIZE_EDITOR_GROUP, SPLIT_EDITOR, TOGGLE_SPLIT_EDITOR_IN_GROUP_LAYOUT, CLOSE_PINNED_EDITOR_COMMAND_ID, CLOSE_EDITORS_AND_GROUP_COMMAND_ID, FOCUS_FIRST_SIDE_EDITOR, FOCUS_SECOND_SIDE_EDITOR } from '@codingame/monaco-vscode-dbfe5f85-b426-55ed-a79b-5f811b395762-common/vscode/vs/workbench/browser/parts/editor/editorCommands';
|
|
22
|
+
import { TOGGLE_DIFF_SIDE_BY_SIDE, GOTO_PREVIOUS_CHANGE, GOTO_NEXT_CHANGE, DIFF_SWAP_SIDES, TOGGLE_DIFF_IGNORE_TRIM_WHITESPACE } from '@codingame/monaco-vscode-dbfe5f85-b426-55ed-a79b-5f811b395762-common/vscode/vs/workbench/browser/parts/editor/diffEditorCommands';
|
|
23
23
|
import { inQuickPickContext, getQuickNavigateHandler } from '@codingame/monaco-vscode-158b9837-fc78-5d9c-86f5-9134e4358643-common/vscode/vs/workbench/browser/quickaccess';
|
|
24
24
|
import { KeybindingsRegistry, KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
25
25
|
import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
|
|
@@ -28,7 +28,7 @@ import { registerEditorContribution, EditorContributionInstantiation } from '@co
|
|
|
28
28
|
import { FloatingEditorClickMenu } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/codeeditor';
|
|
29
29
|
import { registerWorkbenchContribution2, WorkbenchPhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions';
|
|
30
30
|
import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickAccess';
|
|
31
|
-
import { ActiveGroupEditorsByMostRecentlyUsedQuickAccess, AllEditorsByAppearanceQuickAccess, AllEditorsByMostRecentlyUsedQuickAccess } from '@codingame/monaco-vscode-
|
|
31
|
+
import { ActiveGroupEditorsByMostRecentlyUsedQuickAccess, AllEditorsByAppearanceQuickAccess, AllEditorsByMostRecentlyUsedQuickAccess } from '@codingame/monaco-vscode-dbfe5f85-b426-55ed-a79b-5f811b395762-common/vscode/vs/workbench/browser/parts/editor/editorQuickAccess';
|
|
32
32
|
import { FileAccess } from '@codingame/monaco-vscode-api/vscode/vs/base/common/network';
|
|
33
33
|
import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
|
|
34
34
|
import { registerIcon } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/iconRegistry';
|
|
@@ -38,19 +38,19 @@ import { ShowMultipleEditorTabsAction, ShowSingleEditorTabAction, HideEditorTabs
|
|
|
38
38
|
import { EditorContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/editorContextKeys';
|
|
39
39
|
import { getFontSnippets } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/fonts';
|
|
40
40
|
import { registerEditorFontConfigurations } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/config/editorConfigurationSchema';
|
|
41
|
-
import '@codingame/monaco-vscode-
|
|
41
|
+
import '@codingame/monaco-vscode-ddbd4d51-94af-51e5-96b5-f2166ed67ad0-common/vscode/vs/workbench/browser/parts/editor/editor.contribution._autosave';
|
|
42
42
|
|
|
43
|
-
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(TextResourceEditor, TextResourceEditor.ID, ( localize(
|
|
43
|
+
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(TextResourceEditor, TextResourceEditor.ID, ( localize(2992, "Text Editor"))), [
|
|
44
44
|
( new SyncDescriptor(UntitledTextEditorInput)),
|
|
45
45
|
( new SyncDescriptor(TextResourceEditorInput))
|
|
46
46
|
]);
|
|
47
|
-
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(TextDiffEditor, TextDiffEditor.ID, ( localize(
|
|
47
|
+
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(TextDiffEditor, TextDiffEditor.ID, ( localize(2993, "Text Diff Editor"))), [
|
|
48
48
|
( new SyncDescriptor(DiffEditorInput))
|
|
49
49
|
]);
|
|
50
|
-
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(BinaryResourceDiffEditor, BinaryResourceDiffEditor.ID, ( localize(
|
|
50
|
+
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(BinaryResourceDiffEditor, BinaryResourceDiffEditor.ID, ( localize(2994, "Binary Diff Editor"))), [
|
|
51
51
|
( new SyncDescriptor(DiffEditorInput))
|
|
52
52
|
]);
|
|
53
|
-
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(SideBySideEditor, SideBySideEditor.ID, ( localize(
|
|
53
|
+
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(SideBySideEditor, SideBySideEditor.ID, ( localize(2995, "Side by Side Editor"))), [
|
|
54
54
|
( new SyncDescriptor(SideBySideEditorInput))
|
|
55
55
|
]);
|
|
56
56
|
( Registry.as(EditorExtensions.EditorFactory)).registerEditorSerializer(UntitledTextEditorInput.ID, UntitledTextEditorInputSerializer);
|
|
@@ -67,22 +67,22 @@ quickAccessRegistry.registerQuickAccessProvider({
|
|
|
67
67
|
ctor: ActiveGroupEditorsByMostRecentlyUsedQuickAccess,
|
|
68
68
|
prefix: ActiveGroupEditorsByMostRecentlyUsedQuickAccess.PREFIX,
|
|
69
69
|
contextKey: editorPickerContextKey,
|
|
70
|
-
placeholder: ( localize(
|
|
71
|
-
helpEntries: [{ description: ( localize(
|
|
70
|
+
placeholder: ( localize(2996, "Type the name of an editor to open it.")),
|
|
71
|
+
helpEntries: [{ description: ( localize(2997, "Show Editors in Active Group by Most Recently Used")), commandId: ShowEditorsInActiveGroupByMostRecentlyUsedAction.ID }]
|
|
72
72
|
});
|
|
73
73
|
quickAccessRegistry.registerQuickAccessProvider({
|
|
74
74
|
ctor: AllEditorsByAppearanceQuickAccess,
|
|
75
75
|
prefix: AllEditorsByAppearanceQuickAccess.PREFIX,
|
|
76
76
|
contextKey: editorPickerContextKey,
|
|
77
|
-
placeholder: ( localize(
|
|
78
|
-
helpEntries: [{ description: ( localize(
|
|
77
|
+
placeholder: ( localize(2996, "Type the name of an editor to open it.")),
|
|
78
|
+
helpEntries: [{ description: ( localize(2998, "Show All Opened Editors By Appearance")), commandId: ShowAllEditorsByAppearanceAction.ID }]
|
|
79
79
|
});
|
|
80
80
|
quickAccessRegistry.registerQuickAccessProvider({
|
|
81
81
|
ctor: AllEditorsByMostRecentlyUsedQuickAccess,
|
|
82
82
|
prefix: AllEditorsByMostRecentlyUsedQuickAccess.PREFIX,
|
|
83
83
|
contextKey: editorPickerContextKey,
|
|
84
|
-
placeholder: ( localize(
|
|
85
|
-
helpEntries: [{ description: ( localize(
|
|
84
|
+
placeholder: ( localize(2996, "Type the name of an editor to open it.")),
|
|
85
|
+
helpEntries: [{ description: ( localize(2999, "Show All Opened Editors By Most Recently Used")), commandId: ShowAllEditorsByMostRecentlyUsedAction.ID }]
|
|
86
86
|
});
|
|
87
87
|
registerAction2(ChangeLanguageAction);
|
|
88
88
|
registerAction2(ChangeEOLAction);
|
|
@@ -226,62 +226,62 @@ if (isMacintosh) {
|
|
|
226
226
|
order: 1
|
|
227
227
|
});
|
|
228
228
|
}
|
|
229
|
-
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, { command: { id: LOCK_GROUP_COMMAND_ID, title: ( localize(
|
|
230
|
-
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, { command: { id: UNLOCK_GROUP_COMMAND_ID, title: ( localize(
|
|
231
|
-
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, { command: { id: CLOSE_EDITOR_GROUP_COMMAND_ID, title: ( localize(
|
|
232
|
-
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: SPLIT_EDITOR_UP, title: ( localize(
|
|
233
|
-
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: SPLIT_EDITOR_DOWN, title: ( localize(
|
|
234
|
-
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: SPLIT_EDITOR_LEFT, title: ( localize(
|
|
235
|
-
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: SPLIT_EDITOR_RIGHT, title: ( localize(
|
|
236
|
-
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: NEW_EMPTY_EDITOR_WINDOW_COMMAND_ID, title: ( localize(
|
|
237
|
-
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: TOGGLE_LOCK_GROUP_COMMAND_ID, title: ( localize(
|
|
238
|
-
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: CLOSE_EDITOR_GROUP_COMMAND_ID, title: ( localize(
|
|
239
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: SPLIT_EDITOR_UP, title: ( localize(
|
|
240
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: SPLIT_EDITOR_DOWN, title: ( localize(
|
|
241
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: SPLIT_EDITOR_LEFT, title: ( localize(
|
|
242
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: SPLIT_EDITOR_RIGHT, title: ( localize(
|
|
243
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: MOVE_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID, title: ( localize(
|
|
244
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: COPY_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID, title: ( localize(
|
|
245
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { submenu: MenuId.EditorTabsBarShowTabsSubmenu, title: ( localize(
|
|
246
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, { command: { id: ShowMultipleEditorTabsAction.ID, title: ( localize(
|
|
247
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, { command: { id: ShowSingleEditorTabAction.ID, title: ( localize(
|
|
248
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, { command: { id: HideEditorTabsAction.ID, title: ( localize(
|
|
249
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { submenu: MenuId.EditorTabsBarShowTabsZenModeSubmenu, title: ( localize(
|
|
250
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, { command: { id: ZenShowMultipleEditorTabsAction.ID, title: ( localize(
|
|
251
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, { command: { id: ZenShowSingleEditorTabAction.ID, title: ( localize(
|
|
252
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, { command: { id: ZenHideEditorTabsAction.ID, title: ( localize(
|
|
253
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { submenu: MenuId.EditorActionsPositionSubmenu, title: ( localize(
|
|
254
|
-
MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, { command: { id: EditorActionsDefaultAction.ID, title: ( localize(
|
|
255
|
-
MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, { command: { id: EditorActionsTitleBarAction.ID, title: ( localize(
|
|
256
|
-
MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, { command: { id: HideEditorActionsAction.ID, title: ( localize(
|
|
257
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: ConfigureEditorTabsAction.ID, title: ( localize(
|
|
258
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_EDITOR_COMMAND_ID, title: ( localize(
|
|
259
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID, title: ( localize(
|
|
260
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID, title: ( localize(
|
|
261
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_SAVED_EDITORS_COMMAND_ID, title: ( localize(
|
|
262
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID, title: ( localize(
|
|
263
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: REOPEN_WITH_COMMAND_ID, title: ( localize(
|
|
264
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: KEEP_EDITOR_COMMAND_ID, title: ( localize(
|
|
265
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: PIN_EDITOR_COMMAND_ID, title: ( localize(
|
|
266
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: UNPIN_EDITOR_COMMAND_ID, title: ( localize(
|
|
267
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: SPLIT_EDITOR_UP, title: ( localize(
|
|
268
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: SPLIT_EDITOR_DOWN, title: ( localize(
|
|
269
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: SPLIT_EDITOR_LEFT, title: ( localize(
|
|
270
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: SPLIT_EDITOR_RIGHT, title: ( localize(
|
|
271
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: SPLIT_EDITOR_IN_GROUP, title: ( localize(
|
|
272
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: JOIN_EDITOR_IN_GROUP, title: ( localize(
|
|
273
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: MOVE_EDITOR_INTO_NEW_WINDOW_COMMAND_ID, title: ( localize(
|
|
274
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: COPY_EDITOR_INTO_NEW_WINDOW_COMMAND_ID, title: ( localize(
|
|
275
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { submenu: MenuId.EditorTitleContextShare, title: ( localize(
|
|
276
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_DIFF_SIDE_BY_SIDE, title: ( localize(
|
|
277
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: SHOW_EDITORS_IN_GROUP, title: ( localize(
|
|
278
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID, title: ( localize(
|
|
279
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: CLOSE_SAVED_EDITORS_COMMAND_ID, title: ( localize(
|
|
280
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_KEEP_EDITORS_COMMAND_ID, title: ( localize(
|
|
281
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_MAXIMIZE_EDITOR_GROUP, title: ( localize(
|
|
282
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_MAXIMIZE_EDITOR_GROUP, title: ( localize(
|
|
283
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_LOCK_GROUP_COMMAND_ID, title: ( localize(
|
|
284
|
-
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: ConfigureEditorAction.ID, title: ( localize(
|
|
229
|
+
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, { command: { id: LOCK_GROUP_COMMAND_ID, title: ( localize(3000, "Lock Group")), icon: Codicon.unlock }, group: 'navigation', order: 10, when: ( ContextKeyExpr.and(IsAuxiliaryWindowContext, ( ActiveEditorGroupLockedContext.toNegated()))) });
|
|
230
|
+
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, { command: { id: UNLOCK_GROUP_COMMAND_ID, title: ( localize(3001, "Unlock Group")), icon: Codicon.lock, toggled: ContextKeyExpr.true() }, group: 'navigation', order: 10, when: ActiveEditorGroupLockedContext });
|
|
231
|
+
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, { command: { id: CLOSE_EDITOR_GROUP_COMMAND_ID, title: ( localize(3002, "Close Group")), icon: Codicon.close }, group: 'navigation', order: 20, when: ( ContextKeyExpr.or(IsAuxiliaryWindowContext, EditorPartMultipleEditorGroupsContext)) });
|
|
232
|
+
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: SPLIT_EDITOR_UP, title: ( localize(3003, "Split Up")) }, group: '2_split', order: 10 });
|
|
233
|
+
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: SPLIT_EDITOR_DOWN, title: ( localize(3004, "Split Down")) }, group: '2_split', order: 20 });
|
|
234
|
+
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: SPLIT_EDITOR_LEFT, title: ( localize(3005, "Split Left")) }, group: '2_split', order: 30 });
|
|
235
|
+
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: SPLIT_EDITOR_RIGHT, title: ( localize(3006, "Split Right")) }, group: '2_split', order: 40 });
|
|
236
|
+
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: NEW_EMPTY_EDITOR_WINDOW_COMMAND_ID, title: ( localize(3007, "New Window")) }, group: '3_window', order: 10 });
|
|
237
|
+
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: TOGGLE_LOCK_GROUP_COMMAND_ID, title: ( localize(3008, "Lock Group")), toggled: ActiveEditorGroupLockedContext }, group: '4_lock', order: 10, when: ( IsAuxiliaryWindowContext.toNegated()) });
|
|
238
|
+
MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, { command: { id: CLOSE_EDITOR_GROUP_COMMAND_ID, title: ( localize(3009, "Close")) }, group: '5_close', order: 10, when: MultipleEditorGroupsContext });
|
|
239
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: SPLIT_EDITOR_UP, title: ( localize(3003, "Split Up")) }, group: '2_split', order: 10 });
|
|
240
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: SPLIT_EDITOR_DOWN, title: ( localize(3004, "Split Down")) }, group: '2_split', order: 20 });
|
|
241
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: SPLIT_EDITOR_LEFT, title: ( localize(3005, "Split Left")) }, group: '2_split', order: 30 });
|
|
242
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: SPLIT_EDITOR_RIGHT, title: ( localize(3006, "Split Right")) }, group: '2_split', order: 40 });
|
|
243
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: MOVE_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID, title: ( localize(3010, "Move into New Window")) }, group: '3_window', order: 10 });
|
|
244
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: COPY_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID, title: ( localize(3011, "Copy into New Window")) }, group: '3_window', order: 20 });
|
|
245
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { submenu: MenuId.EditorTabsBarShowTabsSubmenu, title: ( localize(3012, "Tab Bar")), group: '4_config', order: 10, when: ( InEditorZenModeContext.negate()) });
|
|
246
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, { command: { id: ShowMultipleEditorTabsAction.ID, title: ( localize(3013, "Multiple Tabs")), toggled: ( ContextKeyExpr.equals('config.workbench.editor.showTabs', 'multiple')) }, group: '1_config', order: 10 });
|
|
247
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, { command: { id: ShowSingleEditorTabAction.ID, title: ( localize(3014, "Single Tab")), toggled: ( ContextKeyExpr.equals('config.workbench.editor.showTabs', 'single')) }, group: '1_config', order: 20 });
|
|
248
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, { command: { id: HideEditorTabsAction.ID, title: ( localize(3015, "Hidden")), toggled: ( ContextKeyExpr.equals('config.workbench.editor.showTabs', 'none')) }, group: '1_config', order: 30 });
|
|
249
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { submenu: MenuId.EditorTabsBarShowTabsZenModeSubmenu, title: ( localize(3012, "Tab Bar")), group: '4_config', order: 10, when: InEditorZenModeContext });
|
|
250
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, { command: { id: ZenShowMultipleEditorTabsAction.ID, title: ( localize(3013, "Multiple Tabs")), toggled: ( ContextKeyExpr.equals('config.zenMode.showTabs', 'multiple')) }, group: '1_config', order: 10 });
|
|
251
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, { command: { id: ZenShowSingleEditorTabAction.ID, title: ( localize(3014, "Single Tab")), toggled: ( ContextKeyExpr.equals('config.zenMode.showTabs', 'single')) }, group: '1_config', order: 20 });
|
|
252
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, { command: { id: ZenHideEditorTabsAction.ID, title: ( localize(3015, "Hidden")), toggled: ( ContextKeyExpr.equals('config.zenMode.showTabs', 'none')) }, group: '1_config', order: 30 });
|
|
253
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { submenu: MenuId.EditorActionsPositionSubmenu, title: ( localize(3016, "Editor Actions Position")), group: '4_config', order: 20 });
|
|
254
|
+
MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, { command: { id: EditorActionsDefaultAction.ID, title: ( localize(3012, "Tab Bar")), toggled: ( ContextKeyExpr.equals('config.workbench.editor.editorActionsLocation', 'default')) }, group: '1_config', order: 10, when: ( ( ContextKeyExpr.equals('config.workbench.editor.showTabs', 'none')).negate()) });
|
|
255
|
+
MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, { command: { id: EditorActionsTitleBarAction.ID, title: ( localize(3017, "Title Bar")), 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')))))) }, group: '1_config', order: 20 });
|
|
256
|
+
MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, { command: { id: HideEditorActionsAction.ID, title: ( localize(3018, "Hidden")), toggled: ( ContextKeyExpr.equals('config.workbench.editor.editorActionsLocation', 'hidden')) }, group: '1_config', order: 30 });
|
|
257
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: ConfigureEditorTabsAction.ID, title: ( localize(3019, "Configure Tabs")) }, group: '9_configure', order: 10 });
|
|
258
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_EDITOR_COMMAND_ID, title: ( localize(3009, "Close")) }, group: '1_close', order: 10 });
|
|
259
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID, title: ( localize(3020, "Close Others")), precondition: ( EditorGroupEditorsCountContext.notEqualsTo('1')) }, group: '1_close', order: 20 });
|
|
260
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID, title: ( localize(3021, "Close to the Right")), precondition: ( ContextKeyExpr.and(( ActiveEditorLastInGroupContext.toNegated()), ( MultipleEditorsSelectedInGroupContext.negate()))) }, group: '1_close', order: 30, when: EditorTabsVisibleContext });
|
|
261
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_SAVED_EDITORS_COMMAND_ID, title: ( localize(3022, "Close Saved")) }, group: '1_close', order: 40 });
|
|
262
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID, title: ( localize(3023, "Close All")) }, group: '1_close', order: 50 });
|
|
263
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: REOPEN_WITH_COMMAND_ID, title: ( localize(3024, "Reopen Editor With...")) }, group: '1_open', order: 10, when: ActiveEditorAvailableEditorIdsContext });
|
|
264
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: KEEP_EDITOR_COMMAND_ID, title: ( localize(3025, "Keep Open")), precondition: ( ActiveEditorPinnedContext.toNegated()) }, group: '3_preview', order: 10, when: ( ContextKeyExpr.has('config.workbench.editor.enablePreview')) });
|
|
265
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: PIN_EDITOR_COMMAND_ID, title: ( localize(3026, "Pin")) }, group: '3_preview', order: 20, when: ( ActiveEditorStickyContext.toNegated()) });
|
|
266
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: UNPIN_EDITOR_COMMAND_ID, title: ( localize(3027, "Unpin")) }, group: '3_preview', order: 20, when: ActiveEditorStickyContext });
|
|
267
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: SPLIT_EDITOR_UP, title: ( localize(3003, "Split Up")) }, group: '5_split', order: 10 });
|
|
268
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: SPLIT_EDITOR_DOWN, title: ( localize(3004, "Split Down")) }, group: '5_split', order: 20 });
|
|
269
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: SPLIT_EDITOR_LEFT, title: ( localize(3005, "Split Left")) }, group: '5_split', order: 30 });
|
|
270
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: SPLIT_EDITOR_RIGHT, title: ( localize(3006, "Split Right")) }, group: '5_split', order: 40 });
|
|
271
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: SPLIT_EDITOR_IN_GROUP, title: ( localize(3028, "Split in Group")), precondition: ( MultipleEditorsSelectedInGroupContext.negate()) }, group: '6_split_in_group', order: 10, when: ActiveEditorCanSplitInGroupContext });
|
|
272
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: JOIN_EDITOR_IN_GROUP, title: ( localize(3029, "Join in Group")), precondition: ( MultipleEditorsSelectedInGroupContext.negate()) }, group: '6_split_in_group', order: 10, when: SideBySideEditorActiveContext });
|
|
273
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: MOVE_EDITOR_INTO_NEW_WINDOW_COMMAND_ID, title: ( localize(3030, "Move into New Window")) }, group: '7_new_window', order: 10 });
|
|
274
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: COPY_EDITOR_INTO_NEW_WINDOW_COMMAND_ID, title: ( localize(3031, "Copy into New Window")) }, group: '7_new_window', order: 20 });
|
|
275
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { submenu: MenuId.EditorTitleContextShare, title: ( localize(3032, "Share")), group: '11_share', order: -1, when: ( MultipleEditorsSelectedInGroupContext.negate()) });
|
|
276
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_DIFF_SIDE_BY_SIDE, title: ( localize(3033, "Inline View")), toggled: ( ContextKeyExpr.equals('config.diffEditor.renderSideBySide', false)) }, group: '1_diff', order: 10, when: ( ContextKeyExpr.has('isInDiffEditor')) });
|
|
277
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: SHOW_EDITORS_IN_GROUP, title: ( localize(3034, "Show Opened Editors")) }, group: '3_open', order: 10 });
|
|
278
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID, title: ( localize(3023, "Close All")) }, group: '5_close', order: 10 });
|
|
279
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: CLOSE_SAVED_EDITORS_COMMAND_ID, title: ( localize(3022, "Close Saved")) }, group: '5_close', order: 20 });
|
|
280
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_KEEP_EDITORS_COMMAND_ID, title: ( localize(3035, "Enable Preview Editors")), toggled: ( ContextKeyExpr.has('config.workbench.editor.enablePreview')) }, group: '7_settings', order: 10 });
|
|
281
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_MAXIMIZE_EDITOR_GROUP, title: ( localize(3036, "Maximize Group")) }, group: '8_group_operations', order: 5, when: ( ContextKeyExpr.and(( EditorPartMaximizedEditorGroupContext.negate()), EditorPartMultipleEditorGroupsContext)) });
|
|
282
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_MAXIMIZE_EDITOR_GROUP, title: ( localize(3037, "Unmaximize Group")) }, group: '8_group_operations', order: 5, when: EditorPartMaximizedEditorGroupContext });
|
|
283
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_LOCK_GROUP_COMMAND_ID, title: ( localize(3038, "Lock Group")), toggled: ActiveEditorGroupLockedContext }, group: '8_group_operations', order: 10, when: ( IsAuxiliaryWindowContext.toNegated()) });
|
|
284
|
+
MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: ConfigureEditorAction.ID, title: ( localize(3039, "Configure Editors")) }, group: '9_configure', order: 10 });
|
|
285
285
|
function appendEditorToolItem(primary, when, order, alternative, precondition, enableInCompactMode) {
|
|
286
286
|
const item = {
|
|
287
287
|
command: {
|
|
@@ -311,96 +311,96 @@ const SPLIT_ORDER = 100000;
|
|
|
311
311
|
const CLOSE_ORDER = 1000000;
|
|
312
312
|
appendEditorToolItem({
|
|
313
313
|
id: SPLIT_EDITOR,
|
|
314
|
-
title: ( localize(
|
|
314
|
+
title: ( localize(3040, "Split Editor Right")),
|
|
315
315
|
icon: Codicon.splitHorizontal
|
|
316
316
|
}, ContextKeyExpr.not('splitEditorsVertically'), SPLIT_ORDER, {
|
|
317
317
|
id: SPLIT_EDITOR_DOWN,
|
|
318
|
-
title: ( localize(
|
|
318
|
+
title: ( localize(3041, "Split Editor Down")),
|
|
319
319
|
icon: Codicon.splitVertical
|
|
320
320
|
});
|
|
321
321
|
appendEditorToolItem({
|
|
322
322
|
id: SPLIT_EDITOR,
|
|
323
|
-
title: ( localize(
|
|
323
|
+
title: ( localize(3041, "Split Editor Down")),
|
|
324
324
|
icon: Codicon.splitVertical
|
|
325
325
|
}, ( ContextKeyExpr.has('splitEditorsVertically')), SPLIT_ORDER, {
|
|
326
326
|
id: SPLIT_EDITOR_RIGHT,
|
|
327
|
-
title: ( localize(
|
|
327
|
+
title: ( localize(3040, "Split Editor Right")),
|
|
328
328
|
icon: Codicon.splitHorizontal
|
|
329
329
|
});
|
|
330
330
|
appendEditorToolItem({
|
|
331
331
|
id: TOGGLE_SPLIT_EDITOR_IN_GROUP_LAYOUT,
|
|
332
|
-
title: ( localize(
|
|
332
|
+
title: ( localize(3042, "Toggle Layout")),
|
|
333
333
|
icon: Codicon.editorLayout
|
|
334
334
|
}, SideBySideEditorActiveContext, SPLIT_ORDER - 1);
|
|
335
335
|
appendEditorToolItem({
|
|
336
336
|
id: CLOSE_EDITOR_COMMAND_ID,
|
|
337
|
-
title: ( localize(
|
|
337
|
+
title: ( localize(3009, "Close")),
|
|
338
338
|
icon: Codicon.close
|
|
339
339
|
}, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ( ActiveEditorDirtyContext.toNegated()), ( ActiveEditorStickyContext.toNegated()))), CLOSE_ORDER, {
|
|
340
340
|
id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
|
|
341
|
-
title: ( localize(
|
|
341
|
+
title: ( localize(3023, "Close All")),
|
|
342
342
|
icon: Codicon.closeAll
|
|
343
343
|
});
|
|
344
344
|
appendEditorToolItem({
|
|
345
345
|
id: CLOSE_EDITOR_COMMAND_ID,
|
|
346
|
-
title: ( localize(
|
|
346
|
+
title: ( localize(3009, "Close")),
|
|
347
347
|
icon: Codicon.closeDirty
|
|
348
348
|
}, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ActiveEditorDirtyContext, ( ActiveEditorStickyContext.toNegated()))), CLOSE_ORDER, {
|
|
349
349
|
id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
|
|
350
|
-
title: ( localize(
|
|
350
|
+
title: ( localize(3023, "Close All")),
|
|
351
351
|
icon: Codicon.closeAll
|
|
352
352
|
});
|
|
353
353
|
appendEditorToolItem({
|
|
354
354
|
id: UNPIN_EDITOR_COMMAND_ID,
|
|
355
|
-
title: ( localize(
|
|
355
|
+
title: ( localize(3027, "Unpin")),
|
|
356
356
|
icon: Codicon.pinned
|
|
357
357
|
}, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ( ActiveEditorDirtyContext.toNegated()), ActiveEditorStickyContext)), CLOSE_ORDER, {
|
|
358
358
|
id: CLOSE_EDITOR_COMMAND_ID,
|
|
359
|
-
title: ( localize(
|
|
359
|
+
title: ( localize(3009, "Close")),
|
|
360
360
|
icon: Codicon.close
|
|
361
361
|
});
|
|
362
362
|
appendEditorToolItem({
|
|
363
363
|
id: UNPIN_EDITOR_COMMAND_ID,
|
|
364
|
-
title: ( localize(
|
|
364
|
+
title: ( localize(3027, "Unpin")),
|
|
365
365
|
icon: Codicon.pinnedDirty
|
|
366
366
|
}, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ActiveEditorDirtyContext, ActiveEditorStickyContext)), CLOSE_ORDER, {
|
|
367
367
|
id: CLOSE_EDITOR_COMMAND_ID,
|
|
368
|
-
title: ( localize(
|
|
368
|
+
title: ( localize(3009, "Close")),
|
|
369
369
|
icon: Codicon.close
|
|
370
370
|
});
|
|
371
371
|
appendEditorToolItem({
|
|
372
372
|
id: LOCK_GROUP_COMMAND_ID,
|
|
373
|
-
title: ( localize(
|
|
373
|
+
title: ( localize(3043, "Lock Group")),
|
|
374
374
|
icon: Codicon.unlock
|
|
375
375
|
}, ( ContextKeyExpr.and(IsAuxiliaryWindowContext, ( ActiveEditorGroupLockedContext.toNegated()))), CLOSE_ORDER - 1);
|
|
376
376
|
appendEditorToolItem({
|
|
377
377
|
id: UNLOCK_GROUP_COMMAND_ID,
|
|
378
|
-
title: ( localize(
|
|
378
|
+
title: ( localize(3044, "Unlock Group")),
|
|
379
379
|
icon: Codicon.lock,
|
|
380
380
|
toggled: ContextKeyExpr.true()
|
|
381
381
|
}, ActiveEditorGroupLockedContext, CLOSE_ORDER - 1);
|
|
382
|
-
const previousChangeIcon = registerIcon('diff-editor-previous-change', Codicon.arrowUp, ( localize(
|
|
382
|
+
const previousChangeIcon = registerIcon('diff-editor-previous-change', Codicon.arrowUp, ( localize(3045, 'Icon for the previous change action in the diff editor.')));
|
|
383
383
|
appendEditorToolItem({
|
|
384
384
|
id: GOTO_PREVIOUS_CHANGE,
|
|
385
|
-
title: ( localize(
|
|
385
|
+
title: ( localize(3046, "Previous Change")),
|
|
386
386
|
icon: previousChangeIcon
|
|
387
387
|
}, TextCompareEditorActiveContext, 10, undefined, EditorContextKeys.hasChanges, true);
|
|
388
|
-
const nextChangeIcon = registerIcon('diff-editor-next-change', Codicon.arrowDown, ( localize(
|
|
388
|
+
const nextChangeIcon = registerIcon('diff-editor-next-change', Codicon.arrowDown, ( localize(3047, 'Icon for the next change action in the diff editor.')));
|
|
389
389
|
appendEditorToolItem({
|
|
390
390
|
id: GOTO_NEXT_CHANGE,
|
|
391
|
-
title: ( localize(
|
|
391
|
+
title: ( localize(3048, "Next Change")),
|
|
392
392
|
icon: nextChangeIcon
|
|
393
393
|
}, TextCompareEditorActiveContext, 11, undefined, EditorContextKeys.hasChanges, true);
|
|
394
394
|
appendEditorToolItem({
|
|
395
395
|
id: DIFF_SWAP_SIDES,
|
|
396
|
-
title: ( localize(
|
|
396
|
+
title: ( localize(3049, "Swap Left and Right Side")),
|
|
397
397
|
icon: Codicon.arrowSwap
|
|
398
398
|
}, ( ContextKeyExpr.and(TextCompareEditorActiveContext, ActiveCompareEditorCanSwapContext)), 15, undefined, undefined);
|
|
399
|
-
const toggleWhitespace = registerIcon('diff-editor-toggle-whitespace', Codicon.whitespace, ( localize(
|
|
399
|
+
const toggleWhitespace = registerIcon('diff-editor-toggle-whitespace', Codicon.whitespace, ( localize(3050, 'Icon for the toggle whitespace action in the diff editor.')));
|
|
400
400
|
MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
|
|
401
401
|
command: {
|
|
402
402
|
id: TOGGLE_DIFF_IGNORE_TRIM_WHITESPACE,
|
|
403
|
-
title: ( localize(
|
|
403
|
+
title: ( localize(3051, "Show Leading/Trailing Whitespace Differences")),
|
|
404
404
|
icon: toggleWhitespace,
|
|
405
405
|
precondition: TextCompareEditorActiveContext,
|
|
406
406
|
toggled: ( ContextKeyExpr.equals('config.diffEditor.ignoreTrimWhitespace', false)),
|
|
@@ -409,22 +409,22 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
|
|
|
409
409
|
when: TextCompareEditorActiveContext,
|
|
410
410
|
order: 20,
|
|
411
411
|
});
|
|
412
|
-
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: KEEP_EDITOR_COMMAND_ID, title: ( localize2(
|
|
413
|
-
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: PIN_EDITOR_COMMAND_ID, title: ( localize2(
|
|
414
|
-
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: UNPIN_EDITOR_COMMAND_ID, title: ( localize2(
|
|
415
|
-
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_EDITOR_COMMAND_ID, title: ( localize2(
|
|
416
|
-
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_PINNED_EDITOR_COMMAND_ID, title: ( localize2(
|
|
417
|
-
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID, title: ( localize2(
|
|
418
|
-
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_SAVED_EDITORS_COMMAND_ID, title: ( localize2(
|
|
419
|
-
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID, title: ( localize2(
|
|
420
|
-
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID, title: ( localize2(
|
|
421
|
-
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_EDITORS_AND_GROUP_COMMAND_ID, title: ( localize2(
|
|
422
|
-
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: REOPEN_WITH_COMMAND_ID, title: ( localize2(
|
|
412
|
+
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: KEEP_EDITOR_COMMAND_ID, title: ( localize2(3052, 'Keep Editor')), category: Categories.View }, when: ( ContextKeyExpr.has('config.workbench.editor.enablePreview')) });
|
|
413
|
+
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: PIN_EDITOR_COMMAND_ID, title: ( localize2(3053, 'Pin Editor')), category: Categories.View } });
|
|
414
|
+
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: UNPIN_EDITOR_COMMAND_ID, title: ( localize2(3054, 'Unpin Editor')), category: Categories.View } });
|
|
415
|
+
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_EDITOR_COMMAND_ID, title: ( localize2(3055, 'Close Editor')), category: Categories.View } });
|
|
416
|
+
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_PINNED_EDITOR_COMMAND_ID, title: ( localize2(3056, 'Close Pinned Editor')), category: Categories.View } });
|
|
417
|
+
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID, title: ( localize2(3057, 'Close All Editors in Group')), category: Categories.View } });
|
|
418
|
+
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_SAVED_EDITORS_COMMAND_ID, title: ( localize2(3058, 'Close Saved Editors in Group')), category: Categories.View } });
|
|
419
|
+
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID, title: ( localize2(3059, 'Close Other Editors in Group')), category: Categories.View } });
|
|
420
|
+
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID, title: ( localize2(3060, 'Close Editors to the Right in Group')), category: Categories.View }, when: ( ActiveEditorLastInGroupContext.toNegated()) });
|
|
421
|
+
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: CLOSE_EDITORS_AND_GROUP_COMMAND_ID, title: ( localize2(3061, 'Close Editor Group')), category: Categories.View }, when: MultipleEditorGroupsContext });
|
|
422
|
+
MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: { id: REOPEN_WITH_COMMAND_ID, title: ( localize2(3024, "Reopen Editor With...")), category: Categories.View }, when: ActiveEditorAvailableEditorIdsContext });
|
|
423
423
|
MenuRegistry.appendMenuItem(MenuId.MenubarRecentMenu, {
|
|
424
424
|
group: '1_editor',
|
|
425
425
|
command: {
|
|
426
426
|
id: ReopenClosedEditorAction.ID,
|
|
427
|
-
title: ( localize(
|
|
427
|
+
title: ( localize(3062, "&&Reopen Closed Editor")),
|
|
428
428
|
precondition: ( ContextKeyExpr.has('canReopenClosedEditor'))
|
|
429
429
|
},
|
|
430
430
|
order: 1
|
|
@@ -433,19 +433,19 @@ MenuRegistry.appendMenuItem(MenuId.MenubarRecentMenu, {
|
|
|
433
433
|
group: 'z_clear',
|
|
434
434
|
command: {
|
|
435
435
|
id: ClearRecentFilesAction.ID,
|
|
436
|
-
title: ( localize(
|
|
436
|
+
title: ( localize(3063, "&&Clear Recently Opened..."))
|
|
437
437
|
},
|
|
438
438
|
order: 1
|
|
439
439
|
});
|
|
440
440
|
MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
|
|
441
|
-
title: ( localize(
|
|
441
|
+
title: ( localize(3064, "Share")),
|
|
442
442
|
submenu: MenuId.MenubarShare,
|
|
443
443
|
group: '45_share',
|
|
444
444
|
order: 1,
|
|
445
445
|
});
|
|
446
446
|
MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, {
|
|
447
447
|
group: '2_appearance',
|
|
448
|
-
title: ( localize(
|
|
448
|
+
title: ( localize(3065, "Editor &&Layout")),
|
|
449
449
|
submenu: MenuId.MenubarLayoutMenu,
|
|
450
450
|
order: 2
|
|
451
451
|
});
|
|
@@ -454,8 +454,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
454
454
|
command: {
|
|
455
455
|
id: SPLIT_EDITOR_UP,
|
|
456
456
|
title: {
|
|
457
|
-
...( localize2(
|
|
458
|
-
mnemonicTitle: ( localize(
|
|
457
|
+
...( localize2(3066, "Split Up")),
|
|
458
|
+
mnemonicTitle: ( localize(3067, "Split &&Up")),
|
|
459
459
|
}
|
|
460
460
|
},
|
|
461
461
|
order: 1
|
|
@@ -465,8 +465,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
465
465
|
command: {
|
|
466
466
|
id: SPLIT_EDITOR_DOWN,
|
|
467
467
|
title: {
|
|
468
|
-
...( localize2(
|
|
469
|
-
mnemonicTitle: ( localize(
|
|
468
|
+
...( localize2(3068, "Split Down")),
|
|
469
|
+
mnemonicTitle: ( localize(3069, "Split &&Down")),
|
|
470
470
|
}
|
|
471
471
|
},
|
|
472
472
|
order: 2
|
|
@@ -476,8 +476,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
476
476
|
command: {
|
|
477
477
|
id: SPLIT_EDITOR_LEFT,
|
|
478
478
|
title: {
|
|
479
|
-
...( localize2(
|
|
480
|
-
mnemonicTitle: ( localize(
|
|
479
|
+
...( localize2(3070, "Split Left")),
|
|
480
|
+
mnemonicTitle: ( localize(3071, "Split &&Left")),
|
|
481
481
|
}
|
|
482
482
|
},
|
|
483
483
|
order: 3
|
|
@@ -487,8 +487,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
487
487
|
command: {
|
|
488
488
|
id: SPLIT_EDITOR_RIGHT,
|
|
489
489
|
title: {
|
|
490
|
-
...( localize2(
|
|
491
|
-
mnemonicTitle: ( localize(
|
|
490
|
+
...( localize2(3072, "Split Right")),
|
|
491
|
+
mnemonicTitle: ( localize(3073, "Split &&Right")),
|
|
492
492
|
}
|
|
493
493
|
},
|
|
494
494
|
order: 4
|
|
@@ -498,8 +498,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
498
498
|
command: {
|
|
499
499
|
id: SPLIT_EDITOR_IN_GROUP,
|
|
500
500
|
title: {
|
|
501
|
-
...( localize2(
|
|
502
|
-
mnemonicTitle: ( localize(
|
|
501
|
+
...( localize2(3074, "Split in Group")),
|
|
502
|
+
mnemonicTitle: ( localize(3075, "Split in &&Group")),
|
|
503
503
|
}
|
|
504
504
|
},
|
|
505
505
|
when: ActiveEditorCanSplitInGroupContext,
|
|
@@ -510,8 +510,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
510
510
|
command: {
|
|
511
511
|
id: JOIN_EDITOR_IN_GROUP,
|
|
512
512
|
title: {
|
|
513
|
-
...( localize2(
|
|
514
|
-
mnemonicTitle: ( localize(
|
|
513
|
+
...( localize2(3076, "Join in Group")),
|
|
514
|
+
mnemonicTitle: ( localize(3077, "Join in &&Group")),
|
|
515
515
|
}
|
|
516
516
|
},
|
|
517
517
|
when: SideBySideEditorActiveContext,
|
|
@@ -522,8 +522,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
522
522
|
command: {
|
|
523
523
|
id: MOVE_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
|
|
524
524
|
title: {
|
|
525
|
-
...( localize2(
|
|
526
|
-
mnemonicTitle: ( localize(
|
|
525
|
+
...( localize2(3078, "Move Editor into New Window")),
|
|
526
|
+
mnemonicTitle: ( localize(3079, "&&Move Editor into New Window")),
|
|
527
527
|
}
|
|
528
528
|
},
|
|
529
529
|
order: 1
|
|
@@ -533,8 +533,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
533
533
|
command: {
|
|
534
534
|
id: COPY_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
|
|
535
535
|
title: {
|
|
536
|
-
...( localize2(
|
|
537
|
-
mnemonicTitle: ( localize(
|
|
536
|
+
...( localize2(3080, "Copy Editor into New Window")),
|
|
537
|
+
mnemonicTitle: ( localize(3081, "&&Copy Editor into New Window")),
|
|
538
538
|
}
|
|
539
539
|
},
|
|
540
540
|
order: 2
|
|
@@ -544,8 +544,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
544
544
|
command: {
|
|
545
545
|
id: EditorLayoutSingleAction.ID,
|
|
546
546
|
title: {
|
|
547
|
-
...( localize2(
|
|
548
|
-
mnemonicTitle: ( localize(
|
|
547
|
+
...( localize2(3082, "Single")),
|
|
548
|
+
mnemonicTitle: ( localize(3083, "&&Single")),
|
|
549
549
|
}
|
|
550
550
|
},
|
|
551
551
|
order: 1
|
|
@@ -555,8 +555,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
555
555
|
command: {
|
|
556
556
|
id: EditorLayoutTwoColumnsAction.ID,
|
|
557
557
|
title: {
|
|
558
|
-
...( localize2(
|
|
559
|
-
mnemonicTitle: ( localize(
|
|
558
|
+
...( localize2(3084, "Two Columns")),
|
|
559
|
+
mnemonicTitle: ( localize(3085, "&&Two Columns")),
|
|
560
560
|
}
|
|
561
561
|
},
|
|
562
562
|
order: 3
|
|
@@ -566,8 +566,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
566
566
|
command: {
|
|
567
567
|
id: EditorLayoutThreeColumnsAction.ID,
|
|
568
568
|
title: {
|
|
569
|
-
...( localize2(
|
|
570
|
-
mnemonicTitle: ( localize(
|
|
569
|
+
...( localize2(3086, "Three Columns")),
|
|
570
|
+
mnemonicTitle: ( localize(3087, "T&&hree Columns")),
|
|
571
571
|
}
|
|
572
572
|
},
|
|
573
573
|
order: 4
|
|
@@ -577,8 +577,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
577
577
|
command: {
|
|
578
578
|
id: EditorLayoutTwoRowsAction.ID,
|
|
579
579
|
title: {
|
|
580
|
-
...( localize2(
|
|
581
|
-
mnemonicTitle: ( localize(
|
|
580
|
+
...( localize2(3088, "Two Rows")),
|
|
581
|
+
mnemonicTitle: ( localize(3089, "T&&wo Rows")),
|
|
582
582
|
}
|
|
583
583
|
},
|
|
584
584
|
order: 5
|
|
@@ -588,8 +588,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
588
588
|
command: {
|
|
589
589
|
id: EditorLayoutThreeRowsAction.ID,
|
|
590
590
|
title: {
|
|
591
|
-
...( localize2(
|
|
592
|
-
mnemonicTitle: ( localize(
|
|
591
|
+
...( localize2(3090, "Three Rows")),
|
|
592
|
+
mnemonicTitle: ( localize(3091, "Three &&Rows")),
|
|
593
593
|
}
|
|
594
594
|
},
|
|
595
595
|
order: 6
|
|
@@ -599,8 +599,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
599
599
|
command: {
|
|
600
600
|
id: EditorLayoutTwoByTwoGridAction.ID,
|
|
601
601
|
title: {
|
|
602
|
-
...( localize2(
|
|
603
|
-
mnemonicTitle: ( localize(
|
|
602
|
+
...( localize2(3092, "Grid (2x2)")),
|
|
603
|
+
mnemonicTitle: ( localize(3093, "&&Grid (2x2)")),
|
|
604
604
|
}
|
|
605
605
|
},
|
|
606
606
|
order: 7
|
|
@@ -610,8 +610,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
610
610
|
command: {
|
|
611
611
|
id: EditorLayoutTwoRowsRightAction.ID,
|
|
612
612
|
title: {
|
|
613
|
-
...( localize2(
|
|
614
|
-
mnemonicTitle: ( localize(
|
|
613
|
+
...( localize2(3094, "Two Rows Right")),
|
|
614
|
+
mnemonicTitle: ( localize(3095, "Two R&&ows Right")),
|
|
615
615
|
}
|
|
616
616
|
},
|
|
617
617
|
order: 8
|
|
@@ -621,8 +621,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
|
|
|
621
621
|
command: {
|
|
622
622
|
id: EditorLayoutTwoColumnsBottomAction.ID,
|
|
623
623
|
title: {
|
|
624
|
-
...( localize2(
|
|
625
|
-
mnemonicTitle: ( localize(
|
|
624
|
+
...( localize2(3096, "Two Columns Bottom")),
|
|
625
|
+
mnemonicTitle: ( localize(3097, "Two &&Columns Bottom")),
|
|
626
626
|
}
|
|
627
627
|
},
|
|
628
628
|
order: 9
|
|
@@ -631,7 +631,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
|
|
|
631
631
|
group: '1_history_nav',
|
|
632
632
|
command: {
|
|
633
633
|
id: 'workbench.action.navigateToLastEditLocation',
|
|
634
|
-
title: ( localize(
|
|
634
|
+
title: ( localize(3098, "&&Last Edit Location")),
|
|
635
635
|
precondition: ( ContextKeyExpr.has('canNavigateToLastEditLocation'))
|
|
636
636
|
},
|
|
637
637
|
order: 3
|
|
@@ -640,7 +640,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
|
|
|
640
640
|
group: '1_sideBySide',
|
|
641
641
|
command: {
|
|
642
642
|
id: FOCUS_FIRST_SIDE_EDITOR,
|
|
643
|
-
title: ( localize(
|
|
643
|
+
title: ( localize(3099, "&&First Side in Editor"))
|
|
644
644
|
},
|
|
645
645
|
when: ( ContextKeyExpr.or(SideBySideEditorActiveContext, TextCompareEditorActiveContext)),
|
|
646
646
|
order: 1
|
|
@@ -649,7 +649,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
|
|
|
649
649
|
group: '1_sideBySide',
|
|
650
650
|
command: {
|
|
651
651
|
id: FOCUS_SECOND_SIDE_EDITOR,
|
|
652
|
-
title: ( localize(
|
|
652
|
+
title: ( localize(3100, "&&Second Side in Editor"))
|
|
653
653
|
},
|
|
654
654
|
when: ( ContextKeyExpr.or(SideBySideEditorActiveContext, TextCompareEditorActiveContext)),
|
|
655
655
|
order: 2
|
|
@@ -658,7 +658,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
|
|
|
658
658
|
group: '2_any',
|
|
659
659
|
command: {
|
|
660
660
|
id: 'workbench.action.nextEditor',
|
|
661
|
-
title: ( localize(
|
|
661
|
+
title: ( localize(3101, "&&Next Editor"))
|
|
662
662
|
},
|
|
663
663
|
order: 1
|
|
664
664
|
});
|
|
@@ -666,7 +666,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
|
|
|
666
666
|
group: '2_any',
|
|
667
667
|
command: {
|
|
668
668
|
id: 'workbench.action.previousEditor',
|
|
669
|
-
title: ( localize(
|
|
669
|
+
title: ( localize(3102, "&&Previous Editor"))
|
|
670
670
|
},
|
|
671
671
|
order: 2
|
|
672
672
|
});
|
|
@@ -674,7 +674,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
|
|
|
674
674
|
group: '3_any_used',
|
|
675
675
|
command: {
|
|
676
676
|
id: 'workbench.action.openNextRecentlyUsedEditor',
|
|
677
|
-
title: ( localize(
|
|
677
|
+
title: ( localize(3103, "&&Next Used Editor"))
|
|
678
678
|
},
|
|
679
679
|
order: 1
|
|
680
680
|
});
|
|
@@ -682,7 +682,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
|
|
|
682
682
|
group: '3_any_used',
|
|
683
683
|
command: {
|
|
684
684
|
id: 'workbench.action.openPreviousRecentlyUsedEditor',
|
|
685
|
-
title: ( localize(
|
|
685
|
+
title: ( localize(3104, "&&Previous Used Editor"))
|
|
686
686
|
},
|
|
687
687
|
order: 2
|
|
688
688
|
});
|
|
@@ -690,7 +690,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
|
|
|
690
690
|
group: '4_group',
|
|
691
691
|
command: {
|
|
692
692
|
id: 'workbench.action.nextEditorInGroup',
|
|
693
|
-
title: ( localize(
|
|
693
|
+
title: ( localize(3105, "&&Next Editor in Group"))
|
|
694
694
|
},
|
|
695
695
|
order: 1
|
|
696
696
|
});
|
|
@@ -698,7 +698,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
|
|
|
698
698
|
group: '4_group',
|
|
699
699
|
command: {
|
|
700
700
|
id: 'workbench.action.previousEditorInGroup',
|
|
701
|
-
title: ( localize(
|
|
701
|
+
title: ( localize(3106, "&&Previous Editor in Group"))
|
|
702
702
|
},
|
|
703
703
|
order: 2
|
|
704
704
|
});
|
|
@@ -706,7 +706,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
|
|
|
706
706
|
group: '5_group_used',
|
|
707
707
|
command: {
|
|
708
708
|
id: 'workbench.action.openNextRecentlyUsedEditorInGroup',
|
|
709
|
-
title: ( localize(
|
|
709
|
+
title: ( localize(3107, "&&Next Used Editor in Group"))
|
|
710
710
|
},
|
|
711
711
|
order: 1
|
|
712
712
|
});
|
|
@@ -714,13 +714,13 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
|
|
|
714
714
|
group: '5_group_used',
|
|
715
715
|
command: {
|
|
716
716
|
id: 'workbench.action.openPreviousRecentlyUsedEditorInGroup',
|
|
717
|
-
title: ( localize(
|
|
717
|
+
title: ( localize(3108, "&&Previous Used Editor in Group"))
|
|
718
718
|
},
|
|
719
719
|
order: 2
|
|
720
720
|
});
|
|
721
721
|
MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
|
|
722
722
|
group: '2_editor_nav',
|
|
723
|
-
title: ( localize(
|
|
723
|
+
title: ( localize(3109, "Switch &&Editor")),
|
|
724
724
|
submenu: MenuId.MenubarSwitchEditorMenu,
|
|
725
725
|
order: 1
|
|
726
726
|
});
|
|
@@ -728,7 +728,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
|
|
|
728
728
|
group: '1_focus_index',
|
|
729
729
|
command: {
|
|
730
730
|
id: 'workbench.action.focusFirstEditorGroup',
|
|
731
|
-
title: ( localize(
|
|
731
|
+
title: ( localize(3110, "Group &&1"))
|
|
732
732
|
},
|
|
733
733
|
order: 1
|
|
734
734
|
});
|
|
@@ -736,7 +736,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
|
|
|
736
736
|
group: '1_focus_index',
|
|
737
737
|
command: {
|
|
738
738
|
id: 'workbench.action.focusSecondEditorGroup',
|
|
739
|
-
title: ( localize(
|
|
739
|
+
title: ( localize(3111, "Group &&2"))
|
|
740
740
|
},
|
|
741
741
|
order: 2
|
|
742
742
|
});
|
|
@@ -744,7 +744,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
|
|
|
744
744
|
group: '1_focus_index',
|
|
745
745
|
command: {
|
|
746
746
|
id: 'workbench.action.focusThirdEditorGroup',
|
|
747
|
-
title: ( localize(
|
|
747
|
+
title: ( localize(3112, "Group &&3")),
|
|
748
748
|
precondition: MultipleEditorGroupsContext
|
|
749
749
|
},
|
|
750
750
|
order: 3
|
|
@@ -753,7 +753,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
|
|
|
753
753
|
group: '1_focus_index',
|
|
754
754
|
command: {
|
|
755
755
|
id: 'workbench.action.focusFourthEditorGroup',
|
|
756
|
-
title: ( localize(
|
|
756
|
+
title: ( localize(3113, "Group &&4")),
|
|
757
757
|
precondition: MultipleEditorGroupsContext
|
|
758
758
|
},
|
|
759
759
|
order: 4
|
|
@@ -762,7 +762,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
|
|
|
762
762
|
group: '1_focus_index',
|
|
763
763
|
command: {
|
|
764
764
|
id: 'workbench.action.focusFifthEditorGroup',
|
|
765
|
-
title: ( localize(
|
|
765
|
+
title: ( localize(3114, "Group &&5")),
|
|
766
766
|
precondition: MultipleEditorGroupsContext
|
|
767
767
|
},
|
|
768
768
|
order: 5
|
|
@@ -771,7 +771,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
|
|
|
771
771
|
group: '2_next_prev',
|
|
772
772
|
command: {
|
|
773
773
|
id: 'workbench.action.focusNextGroup',
|
|
774
|
-
title: ( localize(
|
|
774
|
+
title: ( localize(3115, "&&Next Group")),
|
|
775
775
|
precondition: MultipleEditorGroupsContext
|
|
776
776
|
},
|
|
777
777
|
order: 1
|
|
@@ -780,7 +780,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
|
|
|
780
780
|
group: '2_next_prev',
|
|
781
781
|
command: {
|
|
782
782
|
id: 'workbench.action.focusPreviousGroup',
|
|
783
|
-
title: ( localize(
|
|
783
|
+
title: ( localize(3116, "&&Previous Group")),
|
|
784
784
|
precondition: MultipleEditorGroupsContext
|
|
785
785
|
},
|
|
786
786
|
order: 2
|
|
@@ -789,7 +789,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
|
|
|
789
789
|
group: '3_directional',
|
|
790
790
|
command: {
|
|
791
791
|
id: 'workbench.action.focusLeftGroup',
|
|
792
|
-
title: ( localize(
|
|
792
|
+
title: ( localize(3117, "Group &&Left")),
|
|
793
793
|
precondition: MultipleEditorGroupsContext
|
|
794
794
|
},
|
|
795
795
|
order: 1
|
|
@@ -798,7 +798,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
|
|
|
798
798
|
group: '3_directional',
|
|
799
799
|
command: {
|
|
800
800
|
id: 'workbench.action.focusRightGroup',
|
|
801
|
-
title: ( localize(
|
|
801
|
+
title: ( localize(3118, "Group &&Right")),
|
|
802
802
|
precondition: MultipleEditorGroupsContext
|
|
803
803
|
},
|
|
804
804
|
order: 2
|
|
@@ -807,7 +807,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
|
|
|
807
807
|
group: '3_directional',
|
|
808
808
|
command: {
|
|
809
809
|
id: 'workbench.action.focusAboveGroup',
|
|
810
|
-
title: ( localize(
|
|
810
|
+
title: ( localize(3119, "Group &&Above")),
|
|
811
811
|
precondition: MultipleEditorGroupsContext
|
|
812
812
|
},
|
|
813
813
|
order: 3
|
|
@@ -816,14 +816,14 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
|
|
|
816
816
|
group: '3_directional',
|
|
817
817
|
command: {
|
|
818
818
|
id: 'workbench.action.focusBelowGroup',
|
|
819
|
-
title: ( localize(
|
|
819
|
+
title: ( localize(3120, "Group &&Below")),
|
|
820
820
|
precondition: MultipleEditorGroupsContext
|
|
821
821
|
},
|
|
822
822
|
order: 4
|
|
823
823
|
});
|
|
824
824
|
MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
|
|
825
825
|
group: '2_editor_nav',
|
|
826
|
-
title: ( localize(
|
|
826
|
+
title: ( localize(3121, "Switch &&Group")),
|
|
827
827
|
submenu: MenuId.MenubarSwitchGroupMenu,
|
|
828
828
|
order: 2
|
|
829
829
|
});
|