ligasgr / intellij-xquery

Plugin to support XQuery in Intellij Idea
Apache License 2.0
35 stars 23 forks source link

Entering an empty XML tag inserts a closing tag of the parent element #184

Closed rhdunn closed 8 years ago

rhdunn commented 8 years ago

Given:

<test></test>

Typing <> within <test> results in:

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

Additionally, typing <inner<> (as a typo for <inner><) within <test> results in:

<test><inner<></test></test>