Skip to content

Instantly share code, notes, and snippets.

@EmilyRosina
Created November 21, 2018 11:54
Show Gist options
  • Save EmilyRosina/0e3079304bb8f08ad99162e254f00e64 to your computer and use it in GitHub Desktop.
Save EmilyRosina/0e3079304bb8f08ad99162e254f00e64 to your computer and use it in GitHub Desktop.
VS Code keybindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment