Emmet in ACE editor! in release 3.2

Hey for those of you unfamiliar with Emmet. It’s an HTML/CSS writing shorthand.
Here is the full cheat sheet: Emmet Cheat Sheet
You type:
p + tab
You get:
<p></p>
That’s the simplest example, but it really save you some keystrokes if you type:

*ul>li.item$5
And get:

<ul>
    <li class="item1"></li>
    <li class="item2"></li>
    <li class="item3"></li>
    <li class="item4"></li>
    <li class="item5"></li>
</ul>
4 Likes