Skip to content

Instantly share code, notes, and snippets.

@toddlemoine
Created November 18, 2015 17:11
Show Gist options
  • Save toddlemoine/a90703b832d5a1a243de to your computer and use it in GitHub Desktop.
Save toddlemoine/a90703b832d5a1a243de to your computer and use it in GitHub Desktop.
Sublime Text Keybindings for VS Code
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "cmd+r",
"command": "workbench.action.gotoSymbol"
},
{
"key": "ctrl+cmd+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+cmd+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.insertCursorBelow",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment