We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ce1dc9f + 1904635 commit 4aeb54aCopy full SHA for 4aeb54a
src/services/CodinGameMonacoWorkspace.ts
@@ -91,6 +91,10 @@ export default class CodinGameMonacoWorkspace implements Workspace {
91
const disposableCollection = new DisposableCollection()
92
const timeoutMap = new Map<string, number>()
93
disposableCollection.push(vscode.workspace.onDidChangeTextDocument(e => {
94
+ if (e.document.uri.scheme !== 'file') {
95
+ // Ignore non-file models
96
+ return
97
+ }
98
const uri = e.document.uri.toString()
99
const timeout = timeoutMap.get(uri)
100
if (timeout != null) {
0 commit comments