Skip to content

Instantly share code, notes, and snippets.

@hirosuzuki
Last active August 16, 2020 11:19
Show Gist options
  • Save hirosuzuki/ef3b791b6b48016a439c1df83b36d345 to your computer and use it in GitHub Desktop.
Save hirosuzuki/ef3b791b6b48016a439c1df83b36d345 to your computer and use it in GitHub Desktop.
Visual Studio Code Tips
// Place your key bindings in this file to override the defaults
[
{"key": "ctrl+c", "command": "", "when": "terminalFocus"},
{"key": "ctrl+e", "command": "", "when": "terminalFocus"},
{"key": "ctrl+f", "command": "", "when": "terminalFocus"},
{"key": "ctrl+j", "command": "", "when": "terminalFocus"},
{"key": "ctrl+k", "command": "", "when": "terminalFocus"},
{"key": "ctrl+m", "command": "", "when": "terminalFocus"},
{"key": "ctrl+q", "command": "", "when": "terminalFocus"},
{"key": "ctrl+p", "command": "", "when": "terminalFocus"},
{"key": "ctrl+s", "command": "", "when": "terminalFocus"},
{"key": "ctrl+v", "command": "", "when": "terminalFocus"},
{"key": "ctrl+alt+up", "command": "workbench.action.terminal.focusPrevious", "when": "terminalFocus"},
{"key": "ctrl+alt+down", "command": "workbench.action.terminal.focusNext", "when": "terminalFocus"},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment