6
4
In Sublime Text (using Sublime Text 3), you can get out of a multiple selection / multiple caret mode by pressing the Esc key. When you do this, only the first selection / caret will remain.
Is there a way to make it so that only the last selection / caret will remain instead?
I often find myself hitting escape then needing to move my cursor to what used to be the last selection.
Use case:
I type this using multiple selection:
int foo(
int x,
int x,
int x,
int x,
)
and I want to get rid of the last comma to get to:
int foo(
int x,
int x,
int x,
int x
)
I'd like to hit the Esc key and have my caret be right after that last int x,
.
Super cool! I've been wanting this for ages never bothered to really search for it. I use
shift+escape
to still keep the otherescape
functionality. – freeall – 2017-10-11T09:01:33.363