I wanted a single keyboard shortcut that would let me switch between the built-in terminal and the editor in vscode. I couldn’t find any, so I made a short macro using the VSCode Macros Extension First, you define your macros in settings.json. You can open up vscode settings with Cmd+,, search for macros, and edit this under Macros: List. "macros.list": { "showTerminal": [ "workbench.action.terminal.toggleTerminal", "workbench.action.terminal.focus", "workbench.action.toggleMaximizedPanel" ...