Menu

#12 End tag indented

v0.10
open
nobody
5
2010-01-11
2010-01-11
Anonymous
No

I am actually using .15, but didn't see that as an option.

I have the following settings:

<code>
kit.setAutoIndentation(true);
kit.setTagCompletion(true);
</code>

When I enter a line, such as this (end tag is automatically completed):

<test1234></test1234>

With the cursor placed between the start and end tags I select <ENTER>, the result is this:
<test1234>
</test1234>

It appears this is due to auto indention being set to true. However, setting auto completion to false can result in the the following:

<test>
<test1234>
</test1234>
</test>

The desired output would be this:

<test>
<test1234>
</test1234>
</test>

Discussion


Log in to post a comment.