소스 검색

Fixes missing changes hover

main
Eric Amodio 4 년 전
부모
커밋
5b694faf8b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/hovers/hovers.ts

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

@ -34,7 +34,7 @@ export namespace Hovers {
ref = documentRef;
}
} else {
ref = documentRef ? commit.previousSha : commit.sha;
ref = commit.previousSha;
}
const line = editorLine + 1;
@ -49,7 +49,7 @@ export namespace Hovers {
editorLine = commitLine.originalLine - 1;
// TODO: Doesn't work with dirty files -- pass in editor? or contents?
hunkLine = await Container.git.getDiffForLine(uri, editorLine, ref, uri.sha, originalFileName);
hunkLine = await Container.git.getDiffForLine(uri, editorLine, ref, documentRef, originalFileName);
// If we didn't find a diff & ref is undefined (meaning uncommitted), check for a staged diff
if (hunkLine == null && ref == null) {

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