diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-29 19:11:11 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-29 19:11:11 +0200 |
commit | 1872af2d5e596cbea44a6e5739692dbff8302af5 (patch) | |
tree | 06f1348f1ac073b6580c00ef254563f0fd6db94b /tests/filetypes.vim | |
parent | 46b09b0d5b3cb45d8e62851c40b418a3b9f20af4 (diff) | |
download | vim-polyglot-1872af2d5e596cbea44a6e5739692dbff8302af5.tar.gz vim-polyglot-1872af2d5e596cbea44a6e5739692dbff8302af5.zip |
Fix detection of conf files, closes #569
Diffstat (limited to 'tests/filetypes.vim')
-rw-r--r-- | tests/filetypes.vim | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/filetypes.vim b/tests/filetypes.vim index 78edf1ef..0c36df68 100644 --- a/tests/filetypes.vim +++ b/tests/filetypes.vim @@ -6,6 +6,7 @@ function! TestFiletype(filetype) endfunction call TestFiletype('8th') +call TestFiletype('conf') call TestFiletype('haproxy') call TestFiletype('a2ps') call TestFiletype('a65') @@ -22,6 +23,7 @@ call TestFiletype('aidl') call TestFiletype('alsaconf') call TestFiletype('aml') call TestFiletype('ampl') +call TestFiletype('csv') call TestFiletype('xml') call TestFiletype('ant') call TestFiletype('apache') @@ -53,7 +55,6 @@ call TestFiletype('litcoffee') call TestFiletype('cryptol') call TestFiletype('crystal') call TestFiletype('ecrystal') -call TestFiletype('csv') call TestFiletype('cucumber') call TestFiletype('cuesheet') call TestFiletype('dart') @@ -63,6 +64,7 @@ call TestFiletype('dcov') call TestFiletype('dd') call TestFiletype('ddoc') call TestFiletype('dsdl') +call TestFiletype('yaml') call TestFiletype('Dockerfile') call TestFiletype('yaml.docker-compose') call TestFiletype('elixir') @@ -76,13 +78,13 @@ call TestFiletype('ferm') call TestFiletype('fish') call TestFiletype('fbs') call TestFiletype('forth') -call TestFiletype('glsl') call TestFiletype('fsharp') call TestFiletype('gdscript3') call TestFiletype('gitconfig') call TestFiletype('gitrebase') call TestFiletype('gitsendemail') call TestFiletype('gitcommit') +call TestFiletype('glsl') call TestFiletype('gmpl') call TestFiletype('gnuplot') call TestFiletype('go') @@ -221,7 +223,6 @@ call TestFiletype('vmasm') call TestFiletype('vue') call TestFiletype('xdc') call TestFiletype('xsl') -call TestFiletype('yaml') call TestFiletype('yaml.ansible') call TestFiletype('helm') call TestFiletype('help') |