浏览代码

Adds comment for future vsls + virtual support

main
Eric Amodio 2 年前
父节点
当前提交
6300891c19
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. +5
    -0
      src/env/node/git/vslsGitProvider.ts

+ 5
- 0
src/env/node/git/vslsGitProvider.ts 查看文件

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

正在加载...
取消
保存