Can Sublime Text jump inside <li>foo</li> with a shortcut?

I can't figure out a way to jump inside of html brackets in Sublime Text 2. For example I would like to jump from * to $ in my sample below.

I've tried using ctrl+m and ctrl+shift+m , but they don't seem to be working.
Currently I have to hit opt+leftArrow + leftArrow + leftArrow

<ul>
    <li>one</li>
    <li>two</li>
    <li>three</li>
    <li>$</li*>
</ul>

All I can think of is Command+Shift+A which will jump to $ and select it. You can find it under Selection > Expand Selection to Tag

链接地址: http://www.djcxy.com/p/90902.html

上一篇: Sublime REPL命令在Sublime Text 2中使用

下一篇: Sublime Text可以用快捷方式在<li> foo </ li>内跳转?