@codingame/monaco-vscode-multi-diff-editor-service-override 22.1.9 → 23.0.1
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 +1 -1
- package/package.json +8 -7
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/actions.d.ts +9 -1
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/actions.js +68 -6
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.contribution.js +6 -4
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.d.ts +6 -4
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.js +9 -3
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import '@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices';
|
|
3
3
|
import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
|
|
4
|
-
import { MultiDiffSourceResolverService } from '@codingame/monaco-vscode-
|
|
4
|
+
import { MultiDiffSourceResolverService } from '@codingame/monaco-vscode-aac7027b-326c-513a-95a9-e4eedd151b38-common/vscode/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService';
|
|
5
5
|
import { IMultiDiffSourceResolverService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service';
|
|
6
6
|
import './vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.contribution.js';
|
|
7
7
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-multi-diff-editor-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "23.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - multi-diff-editor service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,12 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-
|
|
19
|
-
"@codingame/monaco-vscode-
|
|
20
|
-
"@codingame/monaco-vscode-
|
|
21
|
-
"@codingame/monaco-vscode-
|
|
22
|
-
"@codingame/monaco-vscode-
|
|
23
|
-
"@codingame/monaco-vscode-
|
|
18
|
+
"@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common": "23.0.1",
|
|
19
|
+
"@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common": "23.0.1",
|
|
20
|
+
"@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "23.0.1",
|
|
21
|
+
"@codingame/monaco-vscode-a6a3e03d-2b1a-5e17-b904-ed5d40c14550-common": "23.0.1",
|
|
22
|
+
"@codingame/monaco-vscode-aac7027b-326c-513a-95a9-e4eedd151b38-common": "23.0.1",
|
|
23
|
+
"@codingame/monaco-vscode-api": "23.0.1",
|
|
24
|
+
"@codingame/monaco-vscode-bc6f260d-ec63-5c95-9446-1ca7d0872719-common": "23.0.1"
|
|
24
25
|
},
|
|
25
26
|
"main": "index.js",
|
|
26
27
|
"module": "index.js",
|
|
@@ -2,7 +2,15 @@ import { Action2 } from "@codingame/monaco-vscode-api/vscode/vs/platform/actions
|
|
|
2
2
|
import { ServicesAccessor } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
3
3
|
export declare class GoToFileAction extends Action2 {
|
|
4
4
|
constructor();
|
|
5
|
-
run(accessor: ServicesAccessor, ...args:
|
|
5
|
+
run(accessor: ServicesAccessor, ...args: unknown[]): Promise<void>;
|
|
6
|
+
}
|
|
7
|
+
export declare class GoToNextChangeAction extends Action2 {
|
|
8
|
+
constructor();
|
|
9
|
+
run(accessor: ServicesAccessor): Promise<void>;
|
|
10
|
+
}
|
|
11
|
+
export declare class GoToPreviousChangeAction extends Action2 {
|
|
12
|
+
constructor();
|
|
13
|
+
run(accessor: ServicesAccessor): Promise<void>;
|
|
6
14
|
}
|
|
7
15
|
export declare class CollapseAllAction extends Action2 {
|
|
8
16
|
constructor();
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
|
|
2
2
|
import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
|
|
3
|
+
import { KeyMod, KeyCode } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
|
|
3
4
|
import { localize2 } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
4
5
|
import { Action2, MenuId } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
5
6
|
import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
|
|
6
7
|
import { TextEditorSelectionRevealType } from '@codingame/monaco-vscode-api/vscode/vs/platform/editor/common/editor';
|
|
8
|
+
import { KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
7
9
|
import { IListService } from '@codingame/monaco-vscode-api/vscode/vs/platform/list/browser/listService.service';
|
|
8
|
-
import { resolveCommandsContext } from '@codingame/monaco-vscode-
|
|
10
|
+
import { resolveCommandsContext } from '@codingame/monaco-vscode-a6a3e03d-2b1a-5e17-b904-ed5d40c14550-common/vscode/vs/workbench/browser/parts/editor/editorCommandsContext';
|
|
9
11
|
import { MultiDiffEditor } from './multiDiffEditor.js';
|
|
10
|
-
import { MultiDiffEditorInput } from '@codingame/monaco-vscode-
|
|
12
|
+
import { MultiDiffEditorInput } from '@codingame/monaco-vscode-bc6f260d-ec63-5c95-9446-1ca7d0872719-common/vscode/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput';
|
|
11
13
|
import { IEditorGroupsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
|
|
12
14
|
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
13
15
|
import { ActiveEditorContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
|
|
@@ -16,7 +18,7 @@ class GoToFileAction extends Action2 {
|
|
|
16
18
|
constructor() {
|
|
17
19
|
super({
|
|
18
20
|
id: 'multiDiffEditor.goToFile',
|
|
19
|
-
title: ( localize2(
|
|
21
|
+
title: ( localize2(9027, 'Open File')),
|
|
20
22
|
icon: Codicon.goToFile,
|
|
21
23
|
precondition: ( ActiveEditorContext.isEqualTo(MultiDiffEditor.ID)),
|
|
22
24
|
menu: {
|
|
@@ -54,11 +56,71 @@ class GoToFileAction extends Action2 {
|
|
|
54
56
|
});
|
|
55
57
|
}
|
|
56
58
|
}
|
|
59
|
+
class GoToNextChangeAction extends Action2 {
|
|
60
|
+
constructor() {
|
|
61
|
+
super({
|
|
62
|
+
id: 'multiDiffEditor.goToNextChange',
|
|
63
|
+
title: ( localize2(9028, 'Go to Next Change')),
|
|
64
|
+
icon: Codicon.arrowDown,
|
|
65
|
+
precondition: ( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)),
|
|
66
|
+
menu: ( [MenuId.EditorTitle, MenuId.CompactWindowEditorTitle].map(id => ({
|
|
67
|
+
id,
|
|
68
|
+
when: ( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)),
|
|
69
|
+
group: 'navigation',
|
|
70
|
+
order: 2
|
|
71
|
+
}))),
|
|
72
|
+
keybinding: {
|
|
73
|
+
primary: KeyMod.Alt | KeyCode.F5,
|
|
74
|
+
weight: KeybindingWeight.EditorContrib,
|
|
75
|
+
when: ( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)),
|
|
76
|
+
},
|
|
77
|
+
f1: true,
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
async run(accessor) {
|
|
81
|
+
const editorService = accessor.get(IEditorService);
|
|
82
|
+
const activeEditorPane = editorService.activeEditorPane;
|
|
83
|
+
if (!(activeEditorPane instanceof MultiDiffEditor)) {
|
|
84
|
+
return;
|
|
85
|
+
}
|
|
86
|
+
activeEditorPane.goToNextChange();
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
class GoToPreviousChangeAction extends Action2 {
|
|
90
|
+
constructor() {
|
|
91
|
+
super({
|
|
92
|
+
id: 'multiDiffEditor.goToPreviousChange',
|
|
93
|
+
title: ( localize2(9029, 'Go to Previous Change')),
|
|
94
|
+
icon: Codicon.arrowUp,
|
|
95
|
+
precondition: ( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)),
|
|
96
|
+
menu: ( [MenuId.EditorTitle, MenuId.CompactWindowEditorTitle].map(id => ({
|
|
97
|
+
id,
|
|
98
|
+
when: ( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)),
|
|
99
|
+
group: 'navigation',
|
|
100
|
+
order: 1
|
|
101
|
+
}))),
|
|
102
|
+
keybinding: {
|
|
103
|
+
primary: KeyMod.Alt | KeyMod.Shift | KeyCode.F5,
|
|
104
|
+
weight: KeybindingWeight.EditorContrib,
|
|
105
|
+
when: ( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)),
|
|
106
|
+
},
|
|
107
|
+
f1: true,
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
async run(accessor) {
|
|
111
|
+
const editorService = accessor.get(IEditorService);
|
|
112
|
+
const activeEditorPane = editorService.activeEditorPane;
|
|
113
|
+
if (!(activeEditorPane instanceof MultiDiffEditor)) {
|
|
114
|
+
return;
|
|
115
|
+
}
|
|
116
|
+
activeEditorPane.goToPreviousChange();
|
|
117
|
+
}
|
|
118
|
+
}
|
|
57
119
|
class CollapseAllAction extends Action2 {
|
|
58
120
|
constructor() {
|
|
59
121
|
super({
|
|
60
122
|
id: 'multiDiffEditor.collapseAll',
|
|
61
|
-
title: ( localize2(
|
|
123
|
+
title: ( localize2(9030, 'Collapse All Diffs')),
|
|
62
124
|
icon: Codicon.collapseAll,
|
|
63
125
|
precondition: ( ContextKeyExpr.and(( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)), ContextKeyExpr.not('multiDiffEditorAllCollapsed'))),
|
|
64
126
|
menu: ( [MenuId.EditorTitle, MenuId.CompactWindowEditorTitle].map(id => ({
|
|
@@ -87,7 +149,7 @@ class ExpandAllAction extends Action2 {
|
|
|
87
149
|
constructor() {
|
|
88
150
|
super({
|
|
89
151
|
id: 'multiDiffEditor.expandAll',
|
|
90
|
-
title: ( localize2(
|
|
152
|
+
title: ( localize2(9031, 'Expand All Diffs')),
|
|
91
153
|
icon: Codicon.expandAll,
|
|
92
154
|
precondition: ( ContextKeyExpr.and(( ContextKeyExpr.equals('activeEditor', MultiDiffEditor.ID)), ( ContextKeyExpr.has('multiDiffEditorAllCollapsed')))),
|
|
93
155
|
menu: ( [MenuId.EditorTitle, MenuId.CompactWindowEditorTitle].map(id => ({
|
|
@@ -113,4 +175,4 @@ class ExpandAllAction extends Action2 {
|
|
|
113
175
|
}
|
|
114
176
|
}
|
|
115
177
|
|
|
116
|
-
export { CollapseAllAction, ExpandAllAction, GoToFileAction };
|
|
178
|
+
export { CollapseAllAction, ExpandAllAction, GoToFileAction, GoToNextChangeAction, GoToPreviousChangeAction };
|
package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditor.contribution.js
CHANGED
|
@@ -8,15 +8,17 @@ import { EditorPaneDescriptor } from '@codingame/monaco-vscode-60014c9d-b815-501
|
|
|
8
8
|
import { registerWorkbenchContribution2, WorkbenchPhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions';
|
|
9
9
|
import { EditorExtensions } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor';
|
|
10
10
|
import { MultiDiffEditor } from './multiDiffEditor.js';
|
|
11
|
-
import { MultiDiffEditorResolverContribution, MultiDiffEditorInput, MultiDiffEditorSerializer } from '@codingame/monaco-vscode-
|
|
12
|
-
import { GoToFileAction, CollapseAllAction, ExpandAllAction } from './actions.js';
|
|
11
|
+
import { MultiDiffEditorResolverContribution, MultiDiffEditorInput, MultiDiffEditorSerializer } from '@codingame/monaco-vscode-bc6f260d-ec63-5c95-9446-1ca7d0872719-common/vscode/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput';
|
|
12
|
+
import { GoToFileAction, GoToNextChangeAction, GoToPreviousChangeAction, CollapseAllAction, ExpandAllAction } from './actions.js';
|
|
13
13
|
import '@codingame/monaco-vscode-api/vscode/vs/base/common/errors';
|
|
14
14
|
import '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
15
15
|
import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
16
16
|
import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/extensions';
|
|
17
|
-
import { OpenScmGroupAction, ScmMultiDiffSourceResolverContribution } from '@codingame/monaco-vscode-
|
|
17
|
+
import { OpenScmGroupAction, ScmMultiDiffSourceResolverContribution } from '@codingame/monaco-vscode-aac7027b-326c-513a-95a9-e4eedd151b38-common/vscode/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver';
|
|
18
18
|
|
|
19
19
|
registerAction2(GoToFileAction);
|
|
20
|
+
registerAction2(GoToNextChangeAction);
|
|
21
|
+
registerAction2(GoToPreviousChangeAction);
|
|
20
22
|
registerAction2(CollapseAllAction);
|
|
21
23
|
registerAction2(ExpandAllAction);
|
|
22
24
|
( Registry.as(Extensions.Configuration))
|
|
@@ -31,7 +33,7 @@ registerAction2(ExpandAllAction);
|
|
|
31
33
|
});
|
|
32
34
|
registerWorkbenchContribution2(MultiDiffEditorResolverContribution.ID, MultiDiffEditorResolverContribution, WorkbenchPhase.BlockStartup );
|
|
33
35
|
( Registry.as(EditorExtensions.EditorPane))
|
|
34
|
-
.registerEditorPane(EditorPaneDescriptor.create(MultiDiffEditor, MultiDiffEditor.ID, ( localize(
|
|
36
|
+
.registerEditorPane(EditorPaneDescriptor.create(MultiDiffEditor, MultiDiffEditor.ID, ( localize(9033, "Multi Diff Editor"))), [( new SyncDescriptor(MultiDiffEditorInput))]);
|
|
35
37
|
( Registry.as(EditorExtensions.EditorFactory))
|
|
36
38
|
.registerEditorSerializer(MultiDiffEditorInput.ID, MultiDiffEditorSerializer);
|
|
37
39
|
registerAction2(OpenScmGroupAction);
|
|
@@ -5,20 +5,20 @@ import { InstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/pla
|
|
|
5
5
|
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
6
6
|
import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
7
7
|
import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
|
|
8
|
-
import { AbstractEditorWithViewState } from "@codingame/monaco-vscode-
|
|
8
|
+
import { AbstractEditorWithViewState } from "@codingame/monaco-vscode-a6a3e03d-2b1a-5e17-b904-ed5d40c14550-common/vscode/vs/workbench/browser/parts/editor/editorWithViewState";
|
|
9
9
|
import { ICompositeControl } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/composite";
|
|
10
10
|
import { IEditorOpenContext } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor";
|
|
11
11
|
import { EditorInput } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor/editorInput";
|
|
12
|
-
import { MultiDiffEditorInput } from "@codingame/monaco-vscode-
|
|
12
|
+
import { MultiDiffEditorInput } from "@codingame/monaco-vscode-bc6f260d-ec63-5c95-9446-1ca7d0872719-common/vscode/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput";
|
|
13
13
|
import { IEditorGroup } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService";
|
|
14
14
|
import { IEditorGroupsService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service";
|
|
15
15
|
import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
16
16
|
import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
|
|
17
|
-
import { MultiDiffEditorViewModel } from "@codingame/monaco-vscode-
|
|
17
|
+
import { MultiDiffEditorViewModel } from "@codingame/monaco-vscode-bc6f260d-ec63-5c95-9446-1ca7d0872719-common/vscode/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorViewModel";
|
|
18
18
|
import { IMultiDiffEditorOptions, IMultiDiffEditorViewState } from "@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common/vscode/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl";
|
|
19
19
|
import { ICodeEditor } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser";
|
|
20
20
|
import { IDiffEditor } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/editorCommon";
|
|
21
|
-
import { MultiDiffEditorItem } from "@codingame/monaco-vscode-
|
|
21
|
+
import { MultiDiffEditorItem } from "@codingame/monaco-vscode-aac7027b-326c-513a-95a9-e4eedd151b38-common/vscode/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService";
|
|
22
22
|
import { IEditorProgressService } from "@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress.service";
|
|
23
23
|
export declare class MultiDiffEditor extends AbstractEditorWithViewState<IMultiDiffEditorViewState> {
|
|
24
24
|
private editorProgressService;
|
|
@@ -44,5 +44,7 @@ export declare class MultiDiffEditor extends AbstractEditorWithViewState<IMultiD
|
|
|
44
44
|
editor: ICodeEditor;
|
|
45
45
|
} | undefined;
|
|
46
46
|
findDocumentDiffItem(resource: URI): MultiDiffEditorItem | undefined;
|
|
47
|
+
goToNextChange(): void;
|
|
48
|
+
goToPreviousChange(): void;
|
|
47
49
|
showWhile(promise: Promise<unknown>): Promise<void>;
|
|
48
50
|
}
|
|
@@ -6,9 +6,9 @@ import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/pl
|
|
|
6
6
|
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
7
7
|
import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
8
8
|
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
9
|
-
import { ResourceLabel } from '@codingame/monaco-vscode-
|
|
10
|
-
import { AbstractEditorWithViewState } from '@codingame/monaco-vscode-
|
|
11
|
-
import { MultiDiffEditorInput } from '@codingame/monaco-vscode-
|
|
9
|
+
import { ResourceLabel } from '@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common/vscode/vs/workbench/browser/labels';
|
|
10
|
+
import { AbstractEditorWithViewState } from '@codingame/monaco-vscode-a6a3e03d-2b1a-5e17-b904-ed5d40c14550-common/vscode/vs/workbench/browser/parts/editor/editorWithViewState';
|
|
11
|
+
import { MultiDiffEditorInput } from '@codingame/monaco-vscode-bc6f260d-ec63-5c95-9446-1ca7d0872719-common/vscode/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput';
|
|
12
12
|
import { IEditorGroupsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
|
|
13
13
|
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
14
14
|
import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
|
|
@@ -92,6 +92,12 @@ let MultiDiffEditor = class MultiDiffEditor extends AbstractEditorWithViewState
|
|
|
92
92
|
const i2 = i;
|
|
93
93
|
return i2.multiDiffEditorItem;
|
|
94
94
|
}
|
|
95
|
+
goToNextChange() {
|
|
96
|
+
this._multiDiffEditorWidget?.goToNextChange();
|
|
97
|
+
}
|
|
98
|
+
goToPreviousChange() {
|
|
99
|
+
this._multiDiffEditorWidget?.goToPreviousChange();
|
|
100
|
+
}
|
|
95
101
|
async showWhile(promise) {
|
|
96
102
|
return this.editorProgressService.showWhile(promise);
|
|
97
103
|
}
|