Last active
March 5, 2020 16:13
-
-
Save kpmiller/d47abaf213b44889bbfc990a940696b8 to your computer and use it in GitHub Desktop.
Make visual studio code's multi cursor settings match Xcode
This file contains 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
in keybindings.json | |
[ | |
{ "key": "shift+ctrl+down", "command": "cursorColumnSelectDown", | |
"when": "editorTextFocus" }, | |
{ "key": "shift+ctrl+up", "command": "cursorColumnSelectUp", | |
"when": "editorTextFocus" }, | |
{ "key": "PageUp", "command": "scrollPageUp", | |
"when": "editorTextFocus" }, | |
{ "key": "PageDown", "command": "scrollPageDown", | |
"when": "editorTextFocus" }, | |
{ "key": "Home", "command": "cursorTop", | |
"when": "editorTextFocus" }, | |
{ "key": "End", "command": "cursorBottom", | |
"when": "editorTextFocus" }, | |
] | |
in settings.json | |
{ | |
"editor.multiCursorModifier": "ctrlCmd", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment