@codingame/monaco-vscode-editor-service-override 1.83.12 → 1.83.14
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.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.14",
|
|
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.14",
|
|
22
22
|
"monaco-editor": "0.44.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
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) => {
|