mattn / emmet-vim

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

Prevent expansion of HTML end tag #465

Open markonm opened 5 years ago

markonm commented 5 years ago

Query: <div></div>div

Without the patch expanded to:

<div><div>
  <div></div>
</div>

With the patch expanded to: <div></div><div></div>