Explorar el Código

Adds comment for future vsls + virtual support

main
Eric Amodio hace 2 años
padre
commit
6300891c19
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      src/env/node/git/vslsGitProvider.ts

+ 5
- 0
src/env/node/git/vslsGitProvider.ts Ver fichero

@ -56,6 +56,11 @@ export class VslsGitProvider extends LocalGitProvider {
}
}
override canHandlePathOrUri(scheme: string, pathOrUri: string | Uri): string | undefined {
// TODO@eamodio To support virtual repositories, we need to verify that the path is local here (by converting the shared path to a local path)
return super.canHandlePathOrUri(scheme, pathOrUri);
}
override getAbsoluteUri(pathOrUri: string | Uri, base: string | Uri): Uri {
pathOrUri = addVslsPrefixIfNeeded(pathOrUri);

Cargando…
Cancelar
Guardar