Explorar el Código

Tuned blame line highlighting

main
Alexey Vasyukov hace 7 años
cometido por Eric Amodio
padre
commit
838fcbf0a1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/annotations/blameAnnotationProvider.ts

+ 1
- 1
src/annotations/blameAnnotationProvider.ts Ver fichero

@ -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);
}

Cargando…
Cancelar
Guardar