Skip to content

Commit

Permalink
Make sure close can be actually disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
faergeek authored and windwp committed Jan 25, 2024
1 parent 8619a63 commit a65b202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/nvim-ts-autotag/internal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ M.setup = function(opts)
if opts.enable_rename ~= nil then
M.enable_rename = opts.enable_rename
end
if opts.enable_close then
if opts.enable_close ~= nil then
M.enable_close = opts.enable_close
end
if opts.enable_close_on_slash ~= nil then
Expand Down

0 comments on commit a65b202

Please sign in to comment.