Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ function loadMacros(context) {
series.add(() => {
// support objects so that we can pass arguments from user settings to the commands
if (typeof action === "object"){
vscode.commands.executeCommand(action.command, action.args);
return vscode.commands.executeCommand(action.command, action.args);
}
// support commands as strings (no args)
else{
vscode.commands.executeCommand(action);
return vscode.commands.executeCommand(action);
}
})
})
Expand Down