Open
Description
See #490 (comment)
If you have a document like this, with cursors at each |
pipe:
<root>
<aaa|
<bbb|
<ccc|
</root>
And then you perform auto-close by typing >
, (assuming #490 is merged), it will give:
<root>
<aaa></aaa>
<bbb></aaa>
<ccc></aaa>
</root>
It would be very cool if we instead did:
<root>
<aaa></aaa>
<bbb></bbb>
<ccc></ccc>
</root>