Created
February 14, 2016 17:00
-
-
Save lewislepton/d2b3939582ccc21393f7 to your computer and use it in GitHub Desktop.
custom hotkeys for vscode & Kode Studio
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
///PERSONAL KEYBINDINGS SINCE VSCODE IS A BIT OF A BITCH | |
[ | |
{ | |
"key": "cmd+r", | |
"command": "workbench.action.debug.continue", | |
}, | |
{ | |
"key": "cmd+r", | |
"command": "workbench.action.debug.start", | |
}, | |
{ | |
"key": "cmd+alt+down", | |
"command": "workbench.files.action.openNextWorkingFile", | |
}, | |
{ | |
"key": "cmd+alt+up", | |
"command": "workbench.files.action.openPreviousWorkingFile" | |
}, | |
{ | |
"key": "cmd+shift+w", | |
"command": "workbench.action.closeFolder" | |
}, | |
{ | |
"key": "cmd+2", | |
"command": "editor.action.commentLine", | |
}, | |
{ | |
"key": "cmd+3", | |
"command": "editor.action.removeCommentLine", | |
}, | |
{ | |
"key": "cmd+alt+w", | |
"command": "workbench.files.action.closeFile" | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment