Created
October 9, 2025 12:39
-
-
Save chaddoncooper/56fad79d2e77b2aa8d9dfb2030b3fa46 to your computer and use it in GitHub Desktop.
vscode keybindings.json for multiline select
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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