Explorar el Código

Avoids git call on already tracked documents

main
Eric Amodio hace 7 años
padre
commit
c7e0c6a13a
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      src/gitService.ts

+ 4
- 1
src/gitService.ts Ver fichero

@ -361,7 +361,10 @@ export class GitService extends Disposable {
editor = editor || window.activeTextEditor;
if (editor === undefined) return undefined;
return this.getRepoPath(editor.document.uri);
const doc = await Container.tracker.getOrAdd(editor.document.uri);
if (doc === undefined) return undefined;
return doc.uri.repoPath;
}
getHighlanderRepoPath(): string | undefined {

Cargando…
Cancelar
Guardar