Skip to content

Commit

Permalink
FIx broken command
Browse files Browse the repository at this point in the history
Signed-off-by: worksofliam <[email protected]>
  • Loading branch information
worksofliam committed Feb 19, 2025
1 parent aac24f0 commit ca2006b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/open.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ export function registerOpenCommands(instance: Instance): Disposable[] {
const editor = window.activeTextEditor;
if (editor) {
currentFile = editor.document.uri;
commands.executeCommand(`diff`, currentFile, path);
commands.executeCommand(`vscode.diff`, currentFile, path);
quickPick.hide();
}
}
Expand Down

0 comments on commit ca2006b

Please sign in to comment.