diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-01-28 18:44:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 18:44:03 +0100 |
commit | 65529dd7a13d5f5340c44c36c443bcd830522cef (patch) | |
tree | ef70ee0b3e6eb7d56e56b00d3e893bef804cd405 /runtime/lua | |
parent | 6cb670cb2ce83a50177eaf37656c0b3c07c3ffde (diff) | |
parent | 5b9980f01eb021b0d84f540a6618f94ad2727153 (diff) | |
download | rneovim-65529dd7a13d5f5340c44c36c443bcd830522cef.tar.gz rneovim-65529dd7a13d5f5340c44c36c443bcd830522cef.tar.bz2 rneovim-65529dd7a13d5f5340c44c36c443bcd830522cef.zip |
Merge pull request #17223 from clason/vim-8.2.4238
vim-patch:8.2.4238: *.tf file could be fileytpe "tf" or "terraform"
Diffstat (limited to 'runtime/lua')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index bd3b44e95b..7fa2fbe001 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -661,7 +661,6 @@ local extension = { txi = "texinfo", texinfo = "texinfo", text = "text", - tf = "tf", tfvars = "terraform", tla = "tla", tli = "tli", @@ -827,6 +826,7 @@ local extension = { stm = function() vim.fn["dist#ft#FThtml"]() end, tcsh = function() vim.fn["dist#ft#SetFileTypeShell"]("tcsh") end, tex = function() vim.fn["dist#ft#FTtex"]() end, + tf = function() vim.fn["dist#ft#FTtf"]() end, w = function() vim.fn["dist#ft#FTprogress_cweb"]() end, xml = function() vim.fn["dist#ft#FTxml"]() end, y = function() vim.fn["dist#ft#FTy"]() end, |