Ver código fonte

Adds comment for future vsls + virtual support

main
Eric Amodio 2 anos atrás
pai
commit
6300891c19
1 arquivos alterados com 5 adições e 0 exclusões
  1. +5
    -0
      src/env/node/git/vslsGitProvider.ts

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

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

Carregando…
Cancelar
Salvar