Skip to content

Instantly share code, notes, and snippets.

@FuriouZz
Last active December 26, 2015 10:09
Show Gist options
  • Save FuriouZz/2037ad34b4a5b6799d28 to your computer and use it in GitHub Desktop.
Save FuriouZz/2037ad34b4a5b6799d28 to your computer and use it in GitHub Desktop.
Some Sublime Text shortcuts in Visual Studio Code
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "shift+cmd+.",
"command": "editor.action.commentLine",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+.",
"command": "editor.action.blockComment",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+cmd+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+cmd+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+k",
"command": "editor.action.deleteLines",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment