@codingame/monaco-vscode-view-common-service-override 28.1.1 → 28.1.2
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-view-common-service-override",
|
|
3
|
-
"version": "28.1.
|
|
3
|
+
"version": "28.1.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - view-common service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "28.1.
|
|
19
|
-
"@codingame/monaco-vscode-bulk-edit-service-override": "28.1.
|
|
18
|
+
"@codingame/monaco-vscode-api": "28.1.2",
|
|
19
|
+
"@codingame/monaco-vscode-bulk-edit-service-override": "28.1.2"
|
|
20
20
|
},
|
|
21
21
|
"main": "index.js",
|
|
22
22
|
"module": "index.js",
|
|
@@ -89,7 +89,7 @@ let HistoryService = class HistoryService extends Disposable {
|
|
|
89
89
|
this.ignoreEditorCloseEvent = false;
|
|
90
90
|
this.history = undefined;
|
|
91
91
|
this.editorHistoryListeners = this._register(( new DisposableMap()));
|
|
92
|
-
this.resourceExcludeMatcher = this._register(
|
|
92
|
+
this.resourceExcludeMatcher = this._register(new WindowIdleValue(mainWindow, () => {
|
|
93
93
|
const matcher = this._register(this.instantiationService.createInstance(
|
|
94
94
|
ResourceGlobMatcher,
|
|
95
95
|
root => getExcludes(root ? this.configurationService.getValue({
|
|
@@ -99,7 +99,7 @@ let HistoryService = class HistoryService extends Disposable {
|
|
|
99
99
|
));
|
|
100
100
|
this._register(matcher.onExpressionChange(() => this.removeExcludedFromHistory()));
|
|
101
101
|
return matcher;
|
|
102
|
-
}))
|
|
102
|
+
}));
|
|
103
103
|
this.editorHelper = this.instantiationService.createInstance(EditorHelper);
|
|
104
104
|
this.canNavigateBackContextKey = ( new RawContextKey("canNavigateBack", false, ( localize(15809, "Whether it is possible to navigate back in editor history")))).bindTo(this.contextKeyService);
|
|
105
105
|
this.canNavigateForwardContextKey = ( new RawContextKey("canNavigateForward", false, ( localize(15810, "Whether it is possible to navigate forward in editor history")))).bindTo(this.contextKeyService);
|