From e46f07b1d2942c7b5c08fca9a4cac735ee2c0c71 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Thu, 6 Mar 2025 22:50:41 +0100 Subject: vim-patch:9.1.1177: filetype: tera files not detected Problem: filetype: tera files not detected Solution: detect '*.tera' files as tera filetype, include a simple filetype plugin (MuntasirSZN) closes: vim/vim#16806 https://github.com/vim/vim/commit/5daaf2326800ff0683a5be9a7f475667a4fc09db Co-authored-by: MuntasirSZN --- runtime/lua/vim/filetype.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/lua/vim') diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 930e2142e7..2c058bc6bf 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1207,6 +1207,7 @@ local extension = { tl = 'teal', templ = 'templ', tmpl = 'template', + tera = 'tera', ti = 'terminfo', dtx = 'tex', ltx = 'tex', -- cgit