vscode-xslt-tokenizer
vscode-xslt-tokenizer copied to clipboard
pasting an element/tag name doesn't change both the start and end tag name although typing it in does
When I have e.g.
<xsl:iterate select="foo">
</xsl:iterate>
and select the iterate
with the mouse or by double clicking it then I can type e.g. for-each
and get the name changed in both the start and the end tag to
<xsl:for-each select="foo">
</xsl:for-each>
However, when I select the iterate
for editing and paste e.g. for-each
then only the start tag gets changed and the end tag remains as iterate
i.e. the result is
<xsl:for-each select="foo">
</xsl:iterate>