소스 검색

Adds more logging for when line blame is skipped

main
Eric Amodio 5 년 전
부모
커밋
3ed0ea195f
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +10
    -0
      src/annotations/lineAnnotationController.ts

+ 10
- 0
src/annotations/lineAnnotationController.ts 파일 보기

@ -153,12 +153,22 @@ export class LineAnnotationController implements Disposable {
const cfg = Container.config.currentLine;
if (this.suspended) {
if (cc) {
cc.exitDetails = ` ${GlyphChars.Dot} Skipped because suspended`;
}
this.clear(editor);
return;
}
const trackedDocument = await Container.tracker.getOrAdd(editor.document);
if (!trackedDocument.isBlameable && this.suspended) {
if (cc) {
cc.exitDetails = ` ${GlyphChars.Dot} Skipped because ${
this.suspended ? 'suspended' : `document(${trackedDocument.uri.toString(true)}) is not blameable`
}`;
}
this.clear(editor);
return;
}

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