Skip to content

Instantly share code, notes, and snippets.

@danieljpgo
Last active March 11, 2021 13:53
Show Gist options
  • Save danieljpgo/60aecd28d6ceace730738ea717263b79 to your computer and use it in GitHub Desktop.
Save danieljpgo/60aecd28d6ceace730738ea717263b79 to your computer and use it in GitHub Desktop.
TODO
// Place your key bindings in this file to override the defaults
[
{
"key": "shift+alt+s",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+w",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment