Reputation: 7849
In sublime text with emmet plugin I can write
To get
But if I want to generate some lorem or other tag
after pressing tab I go to the next list item
how can I avoid this?
Upvotes: 1
Views: 1058
Reputation: 2699
When you expand abbreviation (especially like ul>li*3
), Emmet generates tabstops (fields in terms of Sublime Text) in some important places assuming that you’re likely want to fill-up data in them (attribute values, tag contents etc.). So after you expand abbreviation you’re actually moving between tabstops with Tab/Shift-Tab. It’s a pity that ST does not displays decorations for tabstops.
You can simply press Esc key to quit tabstops mode and use Tab for expanding abbreviations.
Upvotes: 1