Aggressive Autocomplete
I'm editing an XSLT file with the following headers:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="html"
version="1.0">
<xsl:import href="pageTemplate.xslt" />
<xsl:output encoding="utf-8"
method="html"
omit-xml-declaration="yes"
indent="no"
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
When ever I try to type an HTML tag, the autocomplete tries to insert the (unnecessary) names space 'html'.
For example, when I type <body> it swaps it for <html:body> which isn't required as I've declared that as the default namespace.
How do I stop this happening?
Please sign in to leave a comment.