Automatically rename paired HTML/XML tag, same as Visual Studio IDE does.
- When you rename one HTML/XML tag, automatically rename the paired HTML/XML tag
Add entry into auto-rename-tag.activationOnLanguage to set the languages that the extension will be activated.
By default, it is ["*"] and will be activated for all languages.
{
"auto-rename-tag.activationOnLanguage": ["html", "xml", "php", "javascript"]
}The setting should be set with language id defined in VS Code. Taking javascript definition as an example, we need to use javascript for .js and .es6, use javascriptreact for .jsx. So, if you want to enable this extension on .js file, you need to add javascript in settings.json.
From 1.44, VS Code offers the built-in Rename On Type support for HTML and Handlebars that can be enabled with the setting editor.renameOnType. If this setting is enabled, this extension will skip HTML and Handlebars files regardless of the languages listed in auto-rename-tag.activationOnLanguage
P r a s d B o b by
Technology Keen | Web & Desktop Application Developer | Music Addict
Github |
LinkedIn |
Instagram
knvdurgaprasad610@gmail.com

