Skip to content

Instantly share code, notes, and snippets.

@gund
Created November 11, 2019 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gund/124c96e9e16301dab6509a5f8ca2e17a to your computer and use it in GitHub Desktop.
Save gund/124c96e9e16301dab6509a5f8ca2e17a to your computer and use it in GitHub Desktop.
Terminal shortcuts for VSCode

To intercact with with VSCode built-in terminal as your default macos based terminal:

  {
    "key": "cmd+w",
    "command": "workbench.action.terminal.kill",
    "when": "terminalFocus"
  },
  {
    "key": "cmd+t",
    "command": "workbench.action.terminal.new",
    "when": "terminalFocus"
  },
  {
    "key": "cmd+ctrl+alt+right",
    "command": "workbench.action.terminal.focusNext",
    "when": "terminalFocus"
  },
  {
    "key": "cmd+ctrl+alt+left",
    "command": "workbench.action.terminal.focusPrevious",
    "when": "terminalFocus"
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment