You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require('nvim-ts-autotag').setup {
opts = {
-- Defaults
enable_close = true, -- Auto close tags
enable_rename = true, -- Auto rename pairs of tags
enable_close_on_slash = false, -- Auto close on trailing </
},
-- Also override individual filetype configs, these take priority.
-- Empty by default, useful if one of the "opts" global settings
-- doesn't work well in a specific filetype
per_filetype = {
['xml'] = {
enable_close = true,
enable_rename = true, -- Auto rename pairs of tags
},
},
aliases = {
['conaryrecipe'] = 'xml',
},
}
end,
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Hello,
renaming tags does not work in XML files:
Screen.Recording.2024-07-16.at.10.23.24.mov
My nvim-ts-autotag config:
The text was updated successfully, but these errors were encountered: