mattn / emmet-vim

emmet for vim: http://emmet.io/

Home Page:http://mattn.github.io/emmet-vim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unable to update tag name

eight04 opened this issue · comments

commented

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>