From bee717f49b3aeeb85bd8e89d4173b537ae47ab17 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 eb09ef1..aaa1404 100644 --- a/lua/nvim-ts-autotag/internal.lua +++ b/lua/nvim-ts-autotag/internal.lua @@ -13,6 +13,7 @@ M.tbl_filetypes = { 'htmldjango', 'eruby', 'templ', + 'blade', } -- stylua: ignore @@ -31,6 +32,7 @@ local HTML_TAG = { 'php', 'twig', 'xml', + 'blade', }, start_tag_pattern = { 'start_tag', 'STag' }, start_name_tag_pattern = { 'tag_name', 'Name' },