Is there a shortcut to move the cursor out of parentheses, quotes, brackets, etc? For example, in jQuery I type:
.on(
and it auto completes to this
.on()
with the cursor in between the parentheses.
Then I type
'
and it auto completes to this
.on(' ')
with the cursor in between the single quotes.
Then I type
click
and it now shows this
.on('click')
with the cursor to the right of the
k
Now, in order to get the cursor to the right of the last parenthesis to continue typing, I must press the right arrow key twice. Awful problem to have I know
I'm on a Mac with Lion using Sublime Text 2 with ZenCode and Prefixr installed.
Thanks much.