Incorrect cursor tabbing through expanded wrapped HTML via Emmet?
Hi. Recently came back to DW for coding and I'm so very pleasantly surprised. New functionality, Emmet functionality, super! But have one issue in Emmet... while "tab" expands HTML abbreviations correctly for me, what I'm used to from other code editors is then being able to tab in between tag wrappers so I can easily jump from <li> to <li> for example. But in my case tab is expanding my first content into a tag for that content, instead of going say from <li> to <li>. Is there a setting for this behavior or a temporary disable of tab expansion? Example:
ul>li*5 expands correctly into:
<ul>
<li>[cursor defaults to here]</li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
and puts my cursor at the first <li>. But say I enter
<li>Element1[cursor is now here]</li>
And then tab... instead of the cursor moving to the next logical <li> insertion point, it expands my most recent content, Emmet-style:
<li><Element1>[cursor now here]</Element1></li>.
It's expanded my content into a tag.
Any help here? Thank you.
