Преглед изворни кода

Allows line blame annotations on gitlens-git schemes

main
Eric Amodio пре 7 година
родитељ
комит
796730c22f
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/blameActiveLineController.ts

+ 1
- 1
src/blameActiveLineController.ts Прегледај датотеку

@ -121,7 +121,7 @@ export default class BlameActiveLineController extends Disposable {
const previousEditor = this._editor;
previousEditor && previousEditor.setDecorations(activeLineDecoration, []);
if (!e || !e.document || e.document.isUntitled ||
if (!e || !e.document || (e.document.isUntitled && e.document.uri.scheme !== DocumentSchemes.Git) ||
(e.document.uri.scheme !== DocumentSchemes.File && e.document.uri.scheme !== DocumentSchemes.Git) ||
(e.viewColumn === undefined && !this.git.hasGitUriForFile(e))) {
this.clear(e);

Loading…
Откажи
Сачувај