Skip to content

Instantly share code, notes, and snippets.

@kpmiller
Last active March 5, 2020 16:13
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 kpmiller/d47abaf213b44889bbfc990a940696b8 to your computer and use it in GitHub Desktop.
Save kpmiller/d47abaf213b44889bbfc990a940696b8 to your computer and use it in GitHub Desktop.
Make visual studio code's multi cursor settings match Xcode
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