mattn / emmet-vim

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

Indentation issue #483

Open faruzzy opened 4 years ago

faruzzy commented 4 years ago

Typing div>button_ then ctrl-y results in: <div><button></button></div> instead of:

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