Parcourir la source

Tuned blame line highlighting

main
Alexey Vasyukov il y a 7 ans
committed by Eric Amodio
Parent
révision
838fcbf0a1
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/annotations/blameAnnotationProvider.ts

+ 1
- 1
src/annotations/blameAnnotationProvider.ts Voir le fichier

@ -57,7 +57,7 @@ export abstract class BlameAnnotationProviderBase extends AnnotationProviderBase
}
const highlightDecorationRanges = Arrays.filterMap(blame.lines,
l => l.sha !== sha ? this.editor.document.validateRange(new Range(l.line, 0, l.line, 1000000)) : undefined);
l => l.sha === sha ? this.editor.document.validateRange(new Range(l.line, 0, l.line, 1000000)) : undefined);
this.editor.setDecorations(this.highlightDecoration, highlightDecorationRanges);
}

Chargement…
Annuler
Enregistrer