This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 224257 - XML-Editor: Automatically remove end tags when creating self-closing tags
Summary: XML-Editor: Automatically remove end tags when creating self-closing tags
Status: NEW
Alias: None
Product: xml
Classification: Unclassified
Component: Text-Edit (show other bugs)
Version: 7.3
Hardware: PC Windows 7
: P3 normal with 4 votes (vote)
Assignee: Svata Dedic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-12-27 13:26 UTC by markiewb
Modified: 2012-12-27 13:27 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments
Config option in eclipse (36.42 KB, image/png)
2012-12-27 13:27 UTC, markiewb
Details

Note You need to log in before you can comment on or make changes to this bug.
Description markiewb 2012-12-27 13:26:46 UTC
[ BUILD # : 201212260001 ]
[ JDK VERSION : 1.7.0_09 ]

* take this sample
{{{
<bean id="bla" class="Foo"|></bean>
}}}
* type / (forward-slash)
ACTUAL:
<bean id="bla" class="Foo"/></bean>
EXPECTED:
<bean id="bla" class="Foo"/> (the closing tag is removed, i liked this feature
in 
Eclipse - see screenshot)
Comment 1 markiewb 2012-12-27 13:27:38 UTC
Created attachment 129720 [details]
Config option in eclipse