All This Programming, Machine Learning & Physics

VS Code Hacks

|

VS Code doesn’t seem to have a keyboard shortcut for switching between editor and terminal windows. This is typical of the Electron JS apps don’t seem to pay too much attention to ergonomics. This Stackoverflow answer might just be the best solution for the problem:

// Toggle between terminal and editor focus
{ "key": "ctrl+`", "command": "workbench.action.terminal.focus"},
{ "key": "ctrl+`", "command": "workbench.action.focusActiveEditorGroup", "when": "terminalFocus"}