Procházet zdrojové kódy

Adds comment for future vsls + virtual support

main
Eric Amodio před 2 roky
rodič
revize
6300891c19
1 změnil soubory, kde provedl 5 přidání a 0 odebrání
  1. +5
    -0
      src/env/node/git/vslsGitProvider.ts

+ 5
- 0
src/env/node/git/vslsGitProvider.ts Zobrazit soubor

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

Načítá se…
Zrušit
Uložit