Skip to content

Instantly share code, notes, and snippets.

@renestalder
Created August 22, 2016 11:43
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 renestalder/6ed625d0b4f8ce1b26bf6ea3ab03aba1 to your computer and use it in GitHub Desktop.
Save renestalder/6ed625d0b4f8ce1b26bf6ea3ab03aba1 to your computer and use it in GitHub Desktop.
Visual Studio Code Keybindings
[
{
"key": "cmd+s",
"command": "workbench.action.files.saveAll"
},
{
"key": "cmd+shift+i",
"command": "editor.action.format",
"when": "editorTextFocus"
},
{
"key": "cmd+k cmd+d",
"command": "editor.foldAll",
"when": "editorFocus"
},
{
"key": "shift+cmd+/",
"command": "editor.action.blockComment",
"when": "editorTextFocus"
},
{
"key": "alt+`",
"command": "workbench.action.terminal.focus"
},
{
"key": "alt+cmd+left",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
},
{
"key": "alt+cmd+right",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
{
"key": "cmd+t",
"command": "workbench.action.terminal.new",
"when": "terminalFocus"
},
{
"key": "cmd+w",
"command": "workbench.action.terminal.kill",
"when": "terminalFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment