Skip to content

Instantly share code, notes, and snippets.

@lewislepton
Created February 14, 2016 17:00
Show Gist options
  • Save lewislepton/d2b3939582ccc21393f7 to your computer and use it in GitHub Desktop.
Save lewislepton/d2b3939582ccc21393f7 to your computer and use it in GitHub Desktop.
custom hotkeys for vscode & Kode Studio
///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