VS Code - Auto rename HTML tags in React, Vue, and others

In a previous post, VS Code - You don’t need that extension, I covered some settings that offer the same functionality as popular extensions. One topic I covered was renaming paired HTML tags in a single edit, this is also referred to as linked editing of HTML tags.

A bone of contention was the “linked editing” setting only supported HTML and XML files. There was grumbling that this behaviour was not available in JSX. Finally, you can auto rename tags in JSX too.

I wanted to take the opportunity to take a look at other frameworks and languages that contain embedded HTML such as Vue and Nunjucks, to see if it there is a consistent experience for renaming HTML tags in this manner. Some language feature extensions provide this functionality, some don’t. Can we eschew an extension for this functionality now?

TLDR

To enable auto renaming of tags in HTML, XML, and JSX (React and friends), you can enable the editor.linkedEditing setting in your settings.json file. This setting is disabled by default, so you must explicitly set it to true!

JSON
{
"editor.linkedEditing": true,

"javascript.preferences.renameMatchingJsxTags" : true,
"typescript.preferences.renameMatchingJsxTags" : true
}

For JSX, there are 2 related setttings to toggle this feature on or off for JavaScript and TypeScript. They are enabled by default, so you can exclude them from your settings.json.

Auto rename HTML tags

Let’s recap how things operate in HTML and XML files first, before we move onto JSX and others.

Auto rename tags in HTML and XML files

If you want auto renaming of tags in HTML, you must set the Editor: Linked Editing setting to true.

If you want to edit your settings.json file directly, it is editor.linkedEditing setting you are after.

JSON
{
"editor.linkedEditing": true,
}

This enables you to rename a tag by editing it directly, a mirrored cursor will automaticaly rename the matching tag. See video below for example.

You can also use the Rename Symbol command to rename the tag via an inline dialog. The keyboard shortcut for this is F2 .

rename symbol command being run on h2 element

Auto rename tags in JSX (React)

Since version 1.79 (May 2023) of VS Code, auto renaming tags in JSX is also controlled by the editor.linkedEditing setting.

There is one thing to keep in mind: your project must use Typescript version 5.1 or later. VS Code version 1.79 uses TypeScript version 5.1 by default, so you are unlikely to run into an issue for new projects.

If your project workspace is setup to use TypeScript version 5 or less, auto renaming tags will fail. The command Rename Symbol, you will get an error saying “You cannot rename elements that are defined in a ‘node_modules’ folder” as below. This is not a helpful error!

Rename html tag pairs in JSX using the 'rename symbol' command. It gives an error when you are not using Typescript 5.1 or later in the workspace. The error says: You cannot rename elements that are defined in a 'node_modules' folder.

To change what version of TypeScript your workspace is using, you can run the commmand TypeScript: Select TypeScript Version. You can read more about that in the Using newer TypeScript versions section in the docs.

This feature is managed by 2 different settings that are enabled by default:

Auto rename tags in Vue

The Vue Language Features (Volar) extension supports auto renaming tags.

Similar to HTML, you can rename tags by live editing using mirrored cursors, or using the command Rename Symbol.

If you use the Vetur extension for Vue language features, you are out of luck. There is a long-standing request for adding this behaviour to Vetur.

Auto rename tags in Svelte

The Svelte for VS Code extension supports auto renaming tags.

I recommend using the command Rename Symbol to rename matching tags, I found using mirrored cursors for renaming tags to be a bit buggy.

Auto rename tags in other languages such as Nunjucks

Unfortunately, the language feature extension for Nunjucks – Nunjucks Template – does not offer this functionality! Other languages and frameworks are in the same boat!

The command Emmet: Update tag does a similar job to the “linked editing” setting. Emmet is not enabled for Nunjucks by default, so I added it. It looks like it works well for auto renaming tags.

You can add support for Emmet in a language by adding the following to your settings.json:

JSON
"emmet.includeLanguages": {
"njk": "html"
}

The syntax is kind of weird! The docs does not explain why you need to associate the language you want Emmet support in with the html language ID, but that is how you do it for a HTML-like language!

I liked it enough that I changed the keyboard shortcut for F2 to use the Emmet: Update tag command for nunjucks files. I added the following to my keybindings.json:

JSON
{
"key": "f2",
"command": "editor.emmet.action.updateTag",
"when": "editorTextFocus && editorLangId == 'njk'"
}

In lieu of your favourite language supporting auto renaming matching tags, the Emmet: Update tag command is a reasonable workaround. Your mileage may vary though!

Final words

Auto renaming tags is one of those developer experience improvements that makes life just a little bit easier. One less thing to worry about.

I think that we are victims of the multitude of template languages and JavaScript frameworks that utlitize HTML in different ways. It impedes “nice to have” features like this from being widely available because so many features are being redone for each variant. It has taken a long time for this to be implemented by VS Code for React, and you would think React would be nailed-on to get this functionality first, and early.

It is good to see that the other popular frontend frameworks such as Vue and Svelte have auto renaming tags implemented. Beyond that you may have less luck. Using the command Emmet: Update tag works quite well for many languages as a workaround. For the languages that I use, I find that I am covered now and do not need a dedicated extension for this functionality.

One recommendation I would make is to use the Rename Symbol command because it is more consistently implemented across languages. Live editing with mirrored cursors is available for many languges but is not available everywhere.

Thanks for reading!

Tagged