@codingame/monaco-vscode-multi-diff-editor-service-override 23.0.3 → 23.0.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-multi-diff-editor-service-override",
|
|
3
|
-
"version": "23.0.
|
|
3
|
+
"version": "23.0.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - multi-diff-editor service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common": "23.0.
|
|
19
|
-
"@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common": "23.0.
|
|
20
|
-
"@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "23.0.
|
|
21
|
-
"@codingame/monaco-vscode-a6a3e03d-2b1a-5e17-b904-ed5d40c14550-common": "23.0.
|
|
22
|
-
"@codingame/monaco-vscode-aac7027b-326c-513a-95a9-e4eedd151b38-common": "23.0.
|
|
23
|
-
"@codingame/monaco-vscode-api": "23.0.
|
|
24
|
-
"@codingame/monaco-vscode-bc6f260d-ec63-5c95-9446-1ca7d0872719-common": "23.0.
|
|
18
|
+
"@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common": "23.0.4",
|
|
19
|
+
"@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common": "23.0.4",
|
|
20
|
+
"@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "23.0.4",
|
|
21
|
+
"@codingame/monaco-vscode-a6a3e03d-2b1a-5e17-b904-ed5d40c14550-common": "23.0.4",
|
|
22
|
+
"@codingame/monaco-vscode-aac7027b-326c-513a-95a9-e4eedd151b38-common": "23.0.4",
|
|
23
|
+
"@codingame/monaco-vscode-api": "23.0.4",
|
|
24
|
+
"@codingame/monaco-vscode-bc6f260d-ec63-5c95-9446-1ca7d0872719-common": "23.0.4"
|
|
25
25
|
},
|
|
26
26
|
"main": "index.js",
|
|
27
27
|
"module": "index.js",
|
|
@@ -18,7 +18,7 @@ class GoToFileAction extends Action2 {
|
|
|
18
18
|
constructor() {
|
|
19
19
|
super({
|
|
20
20
|
id: 'multiDiffEditor.goToFile',
|
|
21
|
-
title: ( localize2(
|
|
21
|
+
title: ( localize2(9031, 'Open File')),
|
|
22
22
|
icon: Codicon.goToFile,
|
|
23
23
|
precondition: ( ActiveEditorContext.isEqualTo(MultiDiffEditor.ID)),
|
|
24
24
|
menu: {
|
|
@@ -60,7 +60,7 @@ class GoToNextChangeAction extends Action2 {
|
|
|
60
60
|
constructor() {
|
|
61
61
|
super({
|
|
62
62
|
id: 'multiDiffEditor.goToNextChange',
|
|
63
|
-
title: ( localize2(
|
|
63
|
+
title: ( localize2(9032, 'Go to Next Change')),
|
|
64
64
|
icon: Codicon.arrowDown,
|
|
65
65
|
precondition: ( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)),
|
|
66
66
|
menu: ( [MenuId.EditorTitle, MenuId.CompactWindowEditorTitle].map(id => ({
|
|
@@ -90,7 +90,7 @@ class GoToPreviousChangeAction extends Action2 {
|
|
|
90
90
|
constructor() {
|
|
91
91
|
super({
|
|
92
92
|
id: 'multiDiffEditor.goToPreviousChange',
|
|
93
|
-
title: ( localize2(
|
|
93
|
+
title: ( localize2(9033, 'Go to Previous Change')),
|
|
94
94
|
icon: Codicon.arrowUp,
|
|
95
95
|
precondition: ( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)),
|
|
96
96
|
menu: ( [MenuId.EditorTitle, MenuId.CompactWindowEditorTitle].map(id => ({
|
|
@@ -120,7 +120,7 @@ class CollapseAllAction extends Action2 {
|
|
|
120
120
|
constructor() {
|
|
121
121
|
super({
|
|
122
122
|
id: 'multiDiffEditor.collapseAll',
|
|
123
|
-
title: ( localize2(
|
|
123
|
+
title: ( localize2(9034, 'Collapse All Diffs')),
|
|
124
124
|
icon: Codicon.collapseAll,
|
|
125
125
|
precondition: ( ContextKeyExpr.and(( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)), ContextKeyExpr.not('multiDiffEditorAllCollapsed'))),
|
|
126
126
|
menu: ( [MenuId.EditorTitle, MenuId.CompactWindowEditorTitle].map(id => ({
|
|
@@ -149,7 +149,7 @@ class ExpandAllAction extends Action2 {
|
|
|
149
149
|
constructor() {
|
|
150
150
|
super({
|
|
151
151
|
id: 'multiDiffEditor.expandAll',
|
|
152
|
-
title: ( localize2(
|
|
152
|
+
title: ( localize2(9035, 'Expand All Diffs')),
|
|
153
153
|
icon: Codicon.expandAll,
|
|
154
154
|
precondition: ( ContextKeyExpr.and(( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)), ( ContextKeyExpr.has('multiDiffEditorAllCollapsed')))),
|
|
155
155
|
menu: ( [MenuId.EditorTitle, MenuId.CompactWindowEditorTitle].map(id => ({
|
package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.contribution.js
CHANGED
|
@@ -33,7 +33,7 @@ registerAction2(ExpandAllAction);
|
|
|
33
33
|
});
|
|
34
34
|
registerWorkbenchContribution2(MultiDiffEditorResolverContribution.ID, MultiDiffEditorResolverContribution, WorkbenchPhase.BlockStartup );
|
|
35
35
|
( Registry.as(EditorExtensions.EditorPane))
|
|
36
|
-
.registerEditorPane(EditorPaneDescriptor.create(MultiDiffEditor, MultiDiffEditor.ID, ( localize(
|
|
36
|
+
.registerEditorPane(EditorPaneDescriptor.create(MultiDiffEditor, MultiDiffEditor.ID, ( localize(9037, "Multi Diff Editor"))), [( new SyncDescriptor(MultiDiffEditorInput))]);
|
|
37
37
|
( Registry.as(EditorExtensions.EditorFactory))
|
|
38
38
|
.registerEditorSerializer(MultiDiffEditorInput.ID, MultiDiffEditorSerializer);
|
|
39
39
|
registerAction2(OpenScmGroupAction);
|