mattn / emmet-vim

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

Indent all tags #481

Open kevinkucharczyk opened 4 years ago

kevinkucharczyk commented 4 years ago

I would like to be able to automatically indent all new tags. For example, if I expand .some-class*3 right now I get:

<div class="some-class"></div>
<div class="some-class"></div>
<div class="some-class"></div>

What I would like to get, however, is:

<div class="some-class">

</div>
<div class="some-class">

</div>
<div class="some-class">

</div>

I understand this would be possible through format.forceIndentationForTags (https://docs.emmet.io/customization/preferences/) but I can't seem to find a way to apply that setting to emmet-vim.