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.
1 parent ce1dc9f commit 1904635Copy full SHA for 1904635
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