diff options
author | =?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com> | 2022-01-28 14:15:09 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-28 14:15:09 +0000 |
commit | bd8168c7705e315827642f2976ec59e26b7fe009 (patch) | |
tree | 804c303b3236ccf80ad03a3d891642cd76c8d5ee /runtime/autoload | |
parent | fbf4f1ca159028382eaeb3bfc31bb6bb96dbb67a (diff) | |
download | vim-git-bd8168c7705e315827642f2976ec59e26b7fe009.tar.gz |
patch 8.2.4238: *.tf file could be fileytpe "tf" or "terraform"v8.2.4238
Problem: *.tf file could be fileytpe "tf" or "terraform".
Solution: Detect the type from the file contents. (closes #9642)
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/dist/ft.vim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/runtime/autoload/dist/ft.vim b/runtime/autoload/dist/ft.vim index 69712046a..86c71fa52 100644 --- a/runtime/autoload/dist/ft.vim +++ b/runtime/autoload/dist/ft.vim @@ -862,6 +862,21 @@ func dist#ft#FTfoam() endwhile endfunc +" Determine if a *.tf file is TF mud client or terraform +func dist#ft#FTtf() + let numberOfLines = line('$') + for i in range(1, numberOfLines) + let currentLine = trim(getline(i)) + let firstCharacter = currentLine[0] + if firstCharacter !=? ";" && firstCharacter !=? "/" && firstCharacter !=? "" + setf terraform + return + endif + endfor + setf tf +endfunc + + " Restore 'cpoptions' let &cpo = s:cpo_save unlet s:cpo_save |