We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03a93a1 commit 10a3aefCopy full SHA for 10a3aef
1 file changed
extensions/git/src/commands.ts
@@ -845,7 +845,7 @@ export class CommandCenter {
845
try {
846
document = await workspace.openTextDocument(uri);
847
} catch (error) {
848
- await commands.executeCommand<void>('vscode.open', uri, opts);
+ await commands.executeCommand('vscode.open', uri, opts);
849
continue;
850
}
851
@@ -858,7 +858,7 @@ export class CommandCenter {
858
const editor = await window.showTextDocument(document, opts);
859
editor.revealRange(previousVisibleRanges[0]);
860
} else {
861
- await window.showTextDocument(document, opts);
862
863
864
0 commit comments