Created
August 22, 2016 11:43
-
-
Save renestalder/6ed625d0b4f8ce1b26bf6ea3ab03aba1 to your computer and use it in GitHub Desktop.
Visual Studio Code Keybindings
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
[ | |
{ | |
"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