ソースを参照

Fixes issue w/ explore repo rev in latest vscode

main
Eric Amodio 5年前
コミット
d9a3b0e8cd
1個のファイルの変更4行の追加0行の削除
  1. +4
    -0
      src/views/viewCommands.ts

+ 4
- 0
src/views/viewCommands.ts ファイルの表示

@ -504,6 +504,10 @@ export class ViewCommands {
private exploreRepoRevision(node: ViewRefNode, options: { openInNewWindow?: boolean } = {}) {
if (!(node instanceof ViewRefNode)) return;
if (options == null) {
options = {};
}
const uri = toGitLensFSUri(node.ref, node.repoPath);
const gitUri = GitUri.fromRevisionUri(uri);

読み込み中…
キャンセル
保存