I'm new to Ultisnips. In insert mode I type div [tab] then I get:
<div id="name">
</div>
With the cursor on name. If i wan't to use class instead of id I hit backspace and get this
<div>
</div>
With the cursor on the first v. Now if I want to start typing 'class' I end up with this
<diclassv>
</div>
If I delete class and hit [esc] l i 'class' I end up with this
<div id=" "class>
</div>
What's going on here? What am I doing wrong?
I want
<div class="foo">
</div>