Skip to content

Instantly share code, notes, and snippets.

@rytoj
Created April 28, 2019 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rytoj/e414a4bfa7f02f9beee4855d14bc220f to your computer and use it in GitHub Desktop.
Save rytoj/e414a4bfa7f02f9beee4855d14bc220f to your computer and use it in GitHub Desktop.
Visual Studio Code
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+shift+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+down",
"command": "-editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+up",
"command": "-editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+9",
"command": "editor.emmet.action.wrapWithAbbreviation"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment