Skip to content

Instantly share code, notes, and snippets.

@3manuek
Created November 24, 2017 20:51
Show Gist options
  • Save 3manuek/63a3d46b384bad2fde6907a4503131b1 to your computer and use it in GitHub Desktop.
Save 3manuek/63a3d46b384bad2fde6907a4503131b1 to your computer and use it in GitHub Desktop.
Visual Code Key Bindings for Integrated Terminal keybindings.json
[
{
"key": "ctrl+shift+u",
"command": "editor.action.transformToUppercase",
"when": "editorTextFocus"
},{
"key": "ctrl+shift+l",
"command": "editor.action.transformToLowercase",
"when": "editorTextFocus"
},
{
"key": "cmd+right",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
{
"key": "cmd+left",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
},
{
"key": "cmd+f cmd+c",
"command": "workbench.action.terminal.kill",
"when": "terminalFocus"
},
{
"key": "cmd+f cmd+f",
"command": "workbench.action.toggleMaximizedPanel",
"when": "terminalFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment