Quellcode durchsuchen

Stops code lens jumping when editing

main
Eric Amodio vor 7 Jahren
Ursprung
Commit
846195e378
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      src/gitCodeLensProvider.ts

+ 2
- 2
src/gitCodeLensProvider.ts Datei anzeigen

@ -211,8 +211,8 @@ export class GitCodeLensProvider implements CodeLensProvider {
// Make sure there is only 1 lens per line
if (lenses.length && lenses[lenses.length - 1].range.start.line === line.lineNumber) return;
// Anchor the code lens to the end of the line -- so they are somewhat consistently placed
let startChar = line.range.end.character - 1;
// Anchor the code lens to the start of the line -- so that the range won't change with edits (otherwise the code lens will be removed and re-added)
let startChar = 0;
let blameForRangeFn: (() => GitBlameLines | undefined) | undefined;
if (dirty || this._config.codeLens.recentChange.enabled) {

Laden…
Abbrechen
Speichern