diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-04-22 23:41:31 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-04-23 09:38:46 +0200 |
commit | aef120d1e94e83a367a631d6bc8ce0b4a64f9dbd (patch) | |
tree | 7148b12bcf2c14da98b4d67a1225152499661875 /test | |
parent | 3305bb9e4175837f0fb37d46d93568da39067677 (diff) | |
download | rneovim-aef120d1e94e83a367a631d6bc8ce0b4a64f9dbd.tar.gz rneovim-aef120d1e94e83a367a631d6bc8ce0b4a64f9dbd.tar.bz2 rneovim-aef120d1e94e83a367a631d6bc8ce0b4a64f9dbd.zip |
vim-patch:9.1.0366: filetype: ondir files are not recognized
Problem: filetype: ondir files are not recognized
Solution: Detect '.ondirrc' as ondir filetype
(Jon Parise)
closes: vim/vim#14604
https://github.com/vim/vim/commit/ea999037a41292b3d3e00700a87a82fe5d2c12b2
Co-authored-by: Jon Parise <jon@indelible.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim index 45e5eb996f..9fc2f590a1 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -519,6 +519,7 @@ func s:GetFilenameChecks() abort \ 'octave': ['octaverc', '.octaverc', 'octave.conf', 'any/.local/share/octave/history'], \ 'odin': ['file.odin'], \ 'omnimark': ['file.xom', 'file.xin'], + \ 'ondir': ['.ondirrc'], \ 'opam': ['opam', 'file.opam', 'file.opam.template'], \ 'openroad': ['file.or'], \ 'openscad': ['file.scad'], |