How can I navigate my cursor through code in Sublime Text on OS X using only the keyboard, so that it lands directly between opening and closing tags?
For example, after creating a list with Emmet like ul>li*3
, when I hit Tab, my cursor ends up between the first set of <li>
tags. However, if I type something and press the down arrow key, the cursor moves to the end of the line below. Using Option+left/right is not efficient because the cursor stops just before the /
in </li>
, requiring two left arrow presses to reach the desired position.
<ul>
<li>hello 1</li>
<li></li>
<li></li>
</ul>
Is there a way to navigate straight between tags? Would this technique also work for CSS and JS code?