Skip to content

Instantly share code, notes, and snippets.

@ccschmitz
Created August 11, 2012 18:33
Show Gist options
  • Save ccschmitz/3326219 to your computer and use it in GitHub Desktop.
Save ccschmitz/3326219 to your computer and use it in GitHub Desktop.
Create keybindings for multiple cursors in Sublime Text

Create Multiple Cursors from the Keyboard in Sublime Text

The following keybindings will allow you to create multiple cursors (above or below the current cursor) with Command + Option + (Up|Down). On Windows it would be Control + Alt + (Up|Down).

{ "keys": ["super+alt+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["super+alt+down"], "command": "select_lines", "args": {"forward": true} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment