fix(svelte): use correct close tag patterns

See https://github.com/windwp/nvim-ts-autotag/pull/167

Co-authored-by: "roy.crippen4" <roy.crippen4@archarithms.com>
This commit is contained in:
Price Hiller 2024-05-13 04:27:35 -05:00
parent 6bf91cad7e
commit bc8dea7a78
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -86,8 +86,8 @@ local SVELTE_TAG = {
start_name_tag_pattern = { 'tag_name' },
end_tag_pattern = { 'end_tag' },
end_name_tag_pattern = { 'tag_name' },
close_tag_pattern = { 'ERROR' },
close_name_tag_pattern = { 'ERROR', 'erroneous_end_tag_name' },
close_tag_pattern = { 'erroneous_end_tag' },
close_name_tag_pattern = { 'erroneous_end_tag_name' },
element_tag = { 'element' },
skip_tag_pattern = { 'quoted_attribute_value', 'end_tag' },
}