Remove onDidChange listener

This commit is contained in:
Saoud Rizwan 2024-12-25 18:56:41 -08:00
parent 2b5ffa1493
commit 164d5eac7b

View File

@ -45,13 +45,6 @@ class WorkspaceTracker {
}),
)
this.disposables.push(
watcher.onDidChange(async (uri) => {
await this.addFilePath(uri.fsPath)
this.workspaceDidUpdate()
}),
)
this.disposables.push(watcher)
}