Skip to content

Instantly share code, notes, and snippets.

@dcz-switcher
Created February 10, 2016 12:34
Show Gist options
  • Save dcz-switcher/e06342c36a500dc38d80 to your computer and use it in GitHub Desktop.
Save dcz-switcher/e06342c36a500dc38d80 to your computer and use it in GitHub Desktop.
vscode keybindings.json
[
{ "key": "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" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment