All Questions
1 question
0
votes
1
answer
152
views
Wrap with abbreviation for ERB
I love Emmet's Wrap With Abbreviation (docs).
It lets me quickly create a html list from a regular list
start:
foo
bar
baz
command:
ul>li*
result:
<ul>
<li>foo</li>
<...