mattn / emmet-vim

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

Unable to update tag name #529

Closed eight04 closed 2 years ago

eight04 commented 2 years ago

With the following code:

<div class="foo"></div>
  1. Put the cursor in the open tag.
  2. Type <C-Y>u.
  3. Enter span.bar.

The result is

<div class="bar"></div>

instead of

<span class="bar"></span>