Преглед на файлове

Adds watching of creates/deletes inside .git

main
Eric Amodio преди 7 години
родител
ревизия
65736a6ce7
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  1. +2
    -0
      src/gitService.ts

+ 2
- 0
src/gitService.ts Целия файл

@ -156,6 +156,8 @@ export class GitService extends Disposable {
disposables.push(workspace.onDidChangeTextDocument(this._onTextDocumentChanged, this));
disposables.push(workspace.onDidSaveTextDocument(d => this._removeCachedEntry(d, RemoveCacheReason.DocumentSaved)));
disposables.push(this._repoWatcher.onDidChange(this._onRepoChanged, this));
disposables.push(this._repoWatcher.onDidCreate(this._onRepoChanged, this));
disposables.push(this._repoWatcher.onDidDelete(this._onRepoChanged, this));
this._cacheDisposable = Disposable.from(...disposables);
}

Зареждане…
Отказ
Запис