neoclide / coc-html

Html language server extension for coc.nvim.
208 stars 6 forks source link

about indent tags #41

Closed neuromagus closed 3 years ago

neuromagus commented 3 years ago

As follows (| being the cursor):

Before:
<div>|</div>

After pressing CR:
<div>
|</div>

But expected:
<div>
    |
</div>
chemzqm commented 3 years ago

:h coc#on_enter()

neuromagus commented 3 years ago

thanks