Newb question here:
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 but it does take my right hand out of typing position. Is there a shortcut for this? Something more convenient? Like Cmd+Space or something? Or a way to define one? I looked at the Key Bindings in Preferences but couldn’t figure it out. And I don’t know what this technique is called, so had trouble finding it when searching on the web.
I’m on a Mac with Lion using Sublime Text 2 with ZenCode and Prefixr installed.
Thanks much.