Skip to content

Commit e987a35

Browse files
authored
Fix executeCommand to pass arguments correctly (#1863)
1 parent 2a60faa commit e987a35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/ql-vscode/src/common/vscode/vscode-app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ export class ExtensionApp implements App {
4141
}
4242

4343
public executeCommand(command: string, ...args: any): Thenable<void> {
44-
return vscode.commands.executeCommand(command, args);
44+
return vscode.commands.executeCommand(command, ...args);
4545
}
4646
}

0 commit comments

Comments
 (0)