vscode-xslt-tokenizer icon indicating copy to clipboard operation
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

Open martin-honnen opened this issue 4 months ago • 0 comments

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>

martin-honnen avatar Oct 06 '24 15:10 martin-honnen