Przeglądaj źródła

Adds comment for future vsls + virtual support

main
Eric Amodio 2 lat temu
rodzic
commit
6300891c19
1 zmienionych plików z 5 dodań i 0 usunięć
  1. +5
    -0
      src/env/node/git/vslsGitProvider.ts

+ 5
- 0
src/env/node/git/vslsGitProvider.ts Wyświetl plik

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

Ładowanie…
Anuluj
Zapisz