diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-01-28 16:59:17 +0100 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2022-01-28 17:01:13 +0100 |
commit | 5b9980f01eb021b0d84f540a6618f94ad2727153 (patch) | |
tree | ef70ee0b3e6eb7d56e56b00d3e893bef804cd405 /src | |
parent | 6cb670cb2ce83a50177eaf37656c0b3c07c3ffde (diff) | |
download | rneovim-5b9980f01eb021b0d84f540a6618f94ad2727153.tar.gz rneovim-5b9980f01eb021b0d84f540a6618f94ad2727153.tar.bz2 rneovim-5b9980f01eb021b0d84f540a6618f94ad2727153.zip |
vim-patch:8.2.4238: *.tf file could be fileytpe "tf" or "terraform"
Problem: *.tf file could be fileytpe "tf" or "terraform".
Solution: Detect the type from the file contents. (closes vim/vim#9642)
https://github.com/vim/vim/commit/bd8168c7705e315827642f2976ec59e26b7fe009
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index eb4824aa32..8d6f9ded1d 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -746,6 +746,24 @@ func Test_hook_file() filetype off endfunc +func Test_tf_file() + filetype on + + call writefile([';;; TF MUD client is super duper cool'], 'Xfile.tf') + split Xfile.tf + call assert_equal('tf', &filetype) + bwipe! + + call writefile(['provider "azurerm" {'], 'Xfile.tf') + split Xfile.tf + call assert_equal('terraform', &filetype) + bwipe! + + call delete('Xfile.tf') + filetype off +endfunc + + func Test_ts_file() filetype on |