Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chaddoncooper/56fad79d2e77b2aa8d9dfb2030b3fa46 to your computer and use it in GitHub Desktop.
Save chaddoncooper/56fad79d2e77b2aa8d9dfb2030b3fa46 to your computer and use it in GitHub Desktop.
vscode keybindings.json for multiline select
[
{
"key": "ctrl+shift+alt+home",
"command": "runCommands",
"args": {
"commands": [
"editor.action.selectAll",
"editor.action.insertCursorAtEndOfEachLineSelected",
"cursorHome"
]
}
},
{
"key": "ctrl+shift+alt+end",
"command": "runCommands",
"args": {
"commands": [
"editor.action.selectAll",
"editor.action.insertCursorAtEndOfEachLineSelected"
]
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment