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/extensions.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/extensions.vim')
-rw-r--r-- | tests/extensions.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/extensions.vim b/tests/extensions.vim index 45ee6c7d..16548eb8 100644 --- a/tests/extensions.vim +++ b/tests/extensions.vim @@ -376,6 +376,10 @@ call TestExtension("html", "template.html", "{{ item.href }}") call TestExtension("gitignore", ".gitignore", "") " .xml - call TestExtension("xml", ".fglrxrc", "") call TestExtension("xml", "fglrxrc", "") + +" .conf +call TestExtension("conf", "foo.conf", "") +call TestExtension("conf", "config", "") +call TestExtension("conf", "auto.master", "") |