Skip to content

Commit

Permalink
Fix vim.remap: Add missing await on executeCommand (#8645)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdanbrown authored Oct 10, 2023
1 parent 194d4e9 commit 15c84a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensionBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ export async function activate(context: vscode.ExtensionContext, handleLocal: bo
).run(mh.vimState);
mh.updateView();
} else {
vscode.commands.executeCommand(command.command, command.args);
await vscode.commands.executeCommand(command.command, command.args);
}
}
}
Expand Down

0 comments on commit 15c84a6

Please sign in to comment.