소스 검색

Stops clearing broken blame on save

Clears broken blame on close
main
Eric Amodio 7 년 전
부모
커밋
fc09e3a700
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/gitProvider.ts

+ 2
- 2
src/gitProvider.ts 파일 보기

@ -187,8 +187,8 @@ export default class GitProvider extends Disposable {
const cacheKey = this._getCacheEntryKey(fileName);
if (reason === RemoveCacheReason.DocumentClosed) {
// Don't remove broken blame on close (since otherwise we'll have to run the broken blame again)
if (reason === RemoveCacheReason.DocumentSaved) {
// Don't remove broken blame on save (since otherwise we'll have to run the broken blame again)
const entry = this._gitCache.get(cacheKey);
if (entry && entry.hasErrors) return;
}

불러오는 중...
취소
저장