Visual Studio Code keybindings – Running two or more commands with one shortcut
Update: released for vscode v1.77, more at run multiple commands like a macro. You are able to do this: { “command”: “runCommands”, “key”: “alt+r”, // whatever keybinding “args”: { “commands”: [ // commands to run in sequence “workbench.action.files.save”, “workbench.action.terminal.focus” ] } } The command runCommands is built-in, so no extension is necessary for your use … Read more