Last active
August 16, 2020 11:19
-
-
Save hirosuzuki/ef3b791b6b48016a439c1df83b36d345 to your computer and use it in GitHub Desktop.
Visual Studio Code Tips
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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