Skip to content

Instantly share code, notes, and snippets.

@doomsower
doomsower / keybindings.json
Created August 10, 2016 11:00
My VSCode OSX keybindings
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+y", "command": "editor.action.deleteLines",
"when": "editorTextFocus" },
{ "key": "ctrl+d", "command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus" },
{ "key": "shift+alt+down", "command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus" },
{ "key": "shift+alt+up", "command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus" },