We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 320c961 commit de2633dCopy full SHA for de2633d
extension.js
@@ -31,11 +31,11 @@ function loadMacros(context) {
31
series.add(() => {
32
// support objects so that we can pass arguments from user settings to the commands
33
if (typeof action === "object"){
34
- vscode.commands.executeCommand(action.command, action.args);
+ return vscode.commands.executeCommand(action.command, action.args);
35
}
36
// support commands as strings (no args)
37
else{
38
- vscode.commands.executeCommand(action);
+ return vscode.commands.executeCommand(action);
39
40
})
41
0 commit comments