@codingame/monaco-vscode-editor-service-override 1.83.13 → 1.83.15-next.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/editor.js +4 -4
- package/package.json +2 -2
- package/tools/editor.d.ts +6 -6
- package/tools/editor.js +4 -4
package/editor.js
CHANGED
|
@@ -70,10 +70,10 @@ class EmptyEditorGroup {
|
|
|
70
70
|
this.closeEditors = unsupported;
|
|
71
71
|
this.closeAllEditors = unsupported;
|
|
72
72
|
this.replaceEditors = unsupported;
|
|
73
|
-
this.pinEditor =
|
|
74
|
-
this.stickEditor =
|
|
75
|
-
this.unstickEditor =
|
|
76
|
-
this.lock =
|
|
73
|
+
this.pinEditor = () => { };
|
|
74
|
+
this.stickEditor = () => { };
|
|
75
|
+
this.unstickEditor = () => { };
|
|
76
|
+
this.lock = () => { };
|
|
77
77
|
this.isFirst = unsupported;
|
|
78
78
|
this.isLast = unsupported;
|
|
79
79
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-editor-service-override",
|
|
3
|
-
"version": "1.83.
|
|
3
|
+
"version": "1.83.15-next.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@1.83.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@1.83.15-next.0",
|
|
22
22
|
"monaco-editor": "0.44.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
package/tools/editor.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { IEditorPane, IUntypedEditorInput, IUntitledTextResourceEditorInput, IResourceDiffEditorInput, ITextDiffEditorPane } from 'vscode/vscode/vs/workbench/common/editor';
|
|
2
|
-
import {
|
|
3
|
-
import { IResolvedTextEditorModel, ITextModelService } from 'vscode/vscode/vs/editor/common/services/resolverService';
|
|
2
|
+
import { ICodeEditor, IDiffEditor } from 'vscode/vscode/vs/editor/browser/editorBrowser';
|
|
4
3
|
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
5
4
|
import { IReference } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
5
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
6
|
+
import { IEditorOptions, IResourceEditorInput, ITextResourceEditorInput } from 'vscode/vscode/vs/platform/editor/common/editor';
|
|
6
7
|
import { IFileService } from 'vscode/vscode/vs/platform/files/common/files';
|
|
7
8
|
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
|
8
9
|
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
10
|
+
import { IResolvedTextEditorModel, ITextModelService } from 'vscode/vscode/vs/editor/common/services/resolverService';
|
|
11
|
+
import { PreferredGroup } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
12
|
+
import { EditorInput } from 'vscode/vscode/vs/workbench/common/editor/editorInput';
|
|
11
13
|
import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host';
|
|
12
14
|
import { IEditorGroupsService } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService';
|
|
13
|
-
import { EditorInput } from 'vscode/vscode/vs/workbench/common/editor/editorInput';
|
|
14
|
-
import { PreferredGroup } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
15
15
|
import { IEditorResolverService } from 'vscode/vscode/vs/workbench/services/editor/common/editorResolverService';
|
|
16
16
|
import { ITextEditorService } from 'vscode/vscode/vs/workbench/services/textfile/common/textEditorService';
|
|
17
17
|
import { IWorkspaceTrustRequestService } from 'vscode/vscode/vs/platform/workspace/common/workspaceTrust';
|
package/tools/editor.js
CHANGED
|
@@ -215,10 +215,10 @@ let StandaloneEditorGroup = StandaloneEditorGroup_1 = class StandaloneEditorGrou
|
|
|
215
215
|
this.closeEditors = unsupported;
|
|
216
216
|
this.closeAllEditors = unsupported;
|
|
217
217
|
this.replaceEditors = unsupported;
|
|
218
|
-
this.pinEditor =
|
|
219
|
-
this.stickEditor =
|
|
220
|
-
this.unstickEditor =
|
|
221
|
-
this.lock =
|
|
218
|
+
this.pinEditor = () => { };
|
|
219
|
+
this.stickEditor = () => { };
|
|
220
|
+
this.unstickEditor = () => { };
|
|
221
|
+
this.lock = () => { };
|
|
222
222
|
this.isFirst = unsupported;
|
|
223
223
|
this.isLast = unsupported;
|
|
224
224
|
const onNewModel = (uri) => {
|