mattn / emmet-vim

emmet for vim: http://emmet.io/
http://mattn.github.io/emmet-vim
MIT License
6.39k stars 411 forks source link

data-attributes (attrs with dashes) break emmet#updateTag() #513

Closed sukima closed 2 years ago

sukima commented 3 years ago

Given

Create a new file test.html with content:

<div data-foobar="foo">foobar</div>
 ^-- place cursor here

Type <C-y>u.bar<Cr>

Expected

<div class="bar" data-foobar="foo">foobar</div>

Actual

foobar</div>