From c54af24ea921fed3d21a7f3eee009d79400c6fc1 Mon Sep 17 00:00:00 2001 From: Yussef Dalton Date: Mon, 13 May 2024 12:54:47 +0200 Subject: [PATCH] Add Blade filetype The only thing that's missing is it doesn't indent properly when you close a tag, but otherwise it closes properly. --- lua/nvim-ts-autotag/internal.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/nvim-ts-autotag/internal.lua b/lua/nvim-ts-autotag/internal.lua index 25a3b46..344dfa8 100644 --- a/lua/nvim-ts-autotag/internal.lua +++ b/lua/nvim-ts-autotag/internal.lua @@ -16,6 +16,7 @@ M.tbl_filetypes = { 'htmldjango', 'eruby', 'templ', + 'blade', } -- stylua: ignore @@ -33,6 +34,7 @@ local HTML_TAG = { 'markdown', 'php', 'xml', + 'blade', }, start_tag_pattern = { 'start_tag', 'STag' }, start_name_tag_pattern = { 'tag_name', 'Name' },