This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Indention still doesn't work entirely as expected #44
Open
Description
This issue was moved from atom/atom#4379.
Indention got much better in the latest releases, but consider the following HTML-Scenario:
<div>
<a href="#"
class="something"
tal:repeat=""
tal:condition="">Test</a>
</div>
When I copy the <a/>
and paste it (2 empty spaces before), Sublime3 gives me (the expected result):
<div>
<a href="#"
class="something"
tal:repeat=""
tal:condition="">Test</a>
<a href="#"
class="something"
tal:repeat=""
tal:condition="">Test</a>
</div>
in Atom (OSX, 0.152) it becomes:
<div>
<a href="#"
class="something"
tal:repeat=""
tal:condition="">Test</a>
<a href="#"
class="something"
tal:repeat=""
tal:condition="">Test</a>
</div>
Auto-Indent is turned on for language-html
. It's not about the <a/>
-Tag - I can reproduce it with every other element aswell.