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
nvim-ts-autotag has cautioned in their README:
"If you are setting up via nvim-treesitter.configs it has been deprecated! Please migrate to the new way. It will be removed in 1.0.0."
Check README for the new way.
Specific issue thread.
I have added file: lua/<my username>/plugins/nvim-ts-autotag.lua
return {
"windwp/nvim-ts-autotag",
config=function()
localautotag=require("nvim-ts-autotag")
autotag.setup({
opts= {
-- Defaultsenable_close=true, -- Auto close tagsenable_rename=true, -- Auto rename pairs of tagsenable_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 = {-- ["html"] = {-- enable_close = false-- }-- }
})
end,
}
and updated lua/<my username>/plugins/treesitter.lua by removing these 3 lines:
autotag= {
enable=true,
},
I would've sent a PR but looks like all the recent PRs were not merged.
The text was updated successfully, but these errors were encountered: