ligasgr / intellij-xquery

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

Autocomplete for <x:y> does not pick up the namespace qualifier. #144

Closed rhdunn closed 8 years ago

rhdunn commented 8 years ago

Enter:

xquery version "3.0";
declare namespace html = "http://www.w3.org/1999/xhtml";
<html:p

Then enter the > character to close the html:p tag. After doing so, the <html:p> transforms to <html:p></p> which should instead be <html:p></html:p>.