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 ed42eba commit 65736a6Copy full SHA for 65736a6
src/gitService.ts
@@ -156,6 +156,8 @@ export class GitService extends Disposable {
156
disposables.push(workspace.onDidChangeTextDocument(this._onTextDocumentChanged, this));
157
disposables.push(workspace.onDidSaveTextDocument(d => this._removeCachedEntry(d, RemoveCacheReason.DocumentSaved)));
158
disposables.push(this._repoWatcher.onDidChange(this._onRepoChanged, this));
159
+ disposables.push(this._repoWatcher.onDidCreate(this._onRepoChanged, this));
160
+ disposables.push(this._repoWatcher.onDidDelete(this._onRepoChanged, this));
161
162
this._cacheDisposable = Disposable.from(...disposables);
163
}
0 commit comments