Last Updated: February 25, 2016
·
775
· ccschmitz

Hotkeys to create additional cursors in Sublime Text

Take advantage of the select_lines command to quickly create cursors above or below your existing cursor with these keybindings:

{
    "keys": ["super+alt+up"],
    "command": "select_lines",
    "args": {"forward": false}
},
{
    "keys": ["super+alt+down"],
    "command": "select_lines",
    "args": {"forward": true}
}

This may not immediately seem that useful, but just start playing around with it and you'll see the potential. I use it at least a few times every day.

1 Response
Add your response

Awesome!, I've been trying to figure out how to do this with just the keyboard for a while.

over 1 year ago ·