diff options
author | Christian Clason <c.clason@uni-graz.at> | 2021-11-16 13:38:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 13:38:07 +0100 |
commit | 890f8cd750679381a66a2a12f0dda7096f59f8a0 (patch) | |
tree | a2317c7688a36db9aafb11ebe9ca6f1dd8d076a7 /src | |
parent | 87a053f126c79f5eeb1654e35beb31d9fe733163 (diff) | |
parent | 75959d04c4ab9150907b707586930e4450d9e46d (diff) | |
download | rneovim-890f8cd750679381a66a2a12f0dda7096f59f8a0.tar.gz rneovim-890f8cd750679381a66a2a12f0dda7096f59f8a0.tar.bz2 rneovim-890f8cd750679381a66a2a12f0dda7096f59f8a0.zip |
Merge pull request #16330 from clason/vim-8.2.3598
vim-patch:8.2.3598,3599,3600: some filetypes are not recognized
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index 18e59bb6b7..cc8181c597 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -188,7 +188,7 @@ let s:filename_checks = { \ 'freebasic': ['file.fb', 'file.bi'], \ 'fstab': ['fstab', 'mtab'], \ 'fvwm': ['/.fvwm/file', 'any/.fvwm/file'], - \ 'gdb': ['.gdbinit'], + \ 'gdb': ['.gdbinit', 'gdbinit'], \ 'gdmo': ['file.mo', 'file.gdmo'], \ 'gedcom': ['file.ged', 'lltxxxxx.txt', '/tmp/lltmp', '/tmp/lltmp-file', 'any/tmp/lltmp', 'any/tmp/lltmp-file'], \ 'gemtext': ['file.gmi', 'file.gemini'], @@ -419,6 +419,7 @@ let s:filename_checks = { \ 'rnc': ['file.rnc'], \ 'rng': ['file.rng'], \ 'robots': ['robots.txt'], + \ 'routeros': ['file.rsc'], \ 'rpcgen': ['file.x'], \ 'rpl': ['file.rpl'], \ 'rst': ['file.rst'], @@ -659,6 +660,7 @@ let s:script_checks = { \ 'yaml': [['%YAML 1.2']], \ 'pascal': [['#!/path/instantfpc']], \ 'fennel': [['#!/path/fennel']], + \ 'routeros': [['#!/path/rsc']], \ } " Various forms of "env" optional arguments. |