Today I Learned

A Zero One initiative

Toggle and focus VSCode's integrated terminal

Add these shortcut bindings to toggle and focus the terminal. Hitting ⌘+t again will hide the terminal.

{
  "key":     "cmd+t",
  "command": "workbench.action.terminal.toggleTerminal"
}

and

{
  "key":     "cmd+t",
  "command": "workbench.action.terminal.focus",
  "when":    "!terminalFocus"
}