From 08076ec41fb98aa64842c23442b36a1128def8d4 Mon Sep 17 00:00:00 2001 From: Victor Batarse <80638470+Alt-iOS@users.noreply.github.com> Date: Sun, 9 Jun 2024 01:31:25 -0600 Subject: [PATCH] Update plugin.lua --- lua/nvim-ts-autotag/config/plugin.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/nvim-ts-autotag/config/plugin.lua b/lua/nvim-ts-autotag/config/plugin.lua index 85b0de6..9061bd1 100644 --- a/lua/nvim-ts-autotag/config/plugin.lua +++ b/lua/nvim-ts-autotag/config/plugin.lua @@ -100,7 +100,7 @@ local function setup_tag_configs() skip_tag_pattern = { "quoted_attribute_value", "tag_end", "attribute", "value" }, })) - TagConfigs:add(base_cfg:extend("rust",{ + TagConfigs:add(html_tag_cfg:extend("rust",{ start_tag_pattern = { 'open_tag' }, start_name_tag_pattern = { 'node_identifier' }, end_tag_pattern = { 'close_tag' },