Reputation: 8891
I would like to move the cursor in between tags in SublimeText. I can't figure out how to do that. Especially in the case of <test></test>
. If you move the cursor from one end to the other with alt + left/right the cursor will end up moving to these places. <|test></|test>
. But the cursor will never move in between like this <test>|</test>
. This marker is |
is the cursor in this case.
Is there an easy way of doing that?
Note: I use OSX
Upvotes: 1
Views: 2112
Reputation: 10666
If you install the Emmet-plugin for sublime, you can use the shortcut ctrl+alt+j
to move between matching tags. Check it out and see if it fits you, Emmet is quite awesome if you do a lot of html by the way.
Upvotes: 2