diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-10-14 08:43:44 +0200 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2024-10-14 09:31:24 +0200 |
commit | b7e896671500a6e9a0c773bc6bac2d073e588eba (patch) | |
tree | 4a565e55cccf734ba088a31945f873742c142885 | |
parent | d04d7bf65de8e77a8ea3aea59506abc328d77cd1 (diff) | |
download | rneovim-b7e896671500a6e9a0c773bc6bac2d073e588eba.tar.gz rneovim-b7e896671500a6e9a0c773bc6bac2d073e588eba.tar.bz2 rneovim-b7e896671500a6e9a0c773bc6bac2d073e588eba.zip |
vim-patch:9.1.0781: tests: test_filetype fails
Problem: tests: test_filetype fails (clason)
(after v9.1.0779)
Solution: Use correct filename for neomuttlog filetype
related: vim/vim#15845
https://github.com/vim/vim/commit/7d755d8ef328a3eced18c57ea1b569898cc448a2
Co-authored-by: Christian Brabandt <cb@256bit.org>
-rw-r--r-- | test/old/testdir/test_filetype.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim index 092dc60c12..4332d3e2c0 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -524,7 +524,8 @@ func s:GetFilenameChecks() abort \ 'nanorc': ['/etc/nanorc', 'file.nanorc', 'any/etc/nanorc'], \ 'natural': ['file.NSA', 'file.NSC', 'file.NSG', 'file.NSL', 'file.NSM', 'file.NSN', 'file.NSP', 'file.NSS'], \ 'ncf': ['file.ncf'], - \ 'neomuttrc': ['Neomuttrc', '.neomuttrc', '.neomuttrc-file', '/.neomutt/neomuttrc', '/.neomutt/neomuttrc-file', 'Neomuttrc', 'Neomuttrc-file', 'any/.neomutt/neomuttrc', 'any/.neomutt/neomuttrc-file', 'neomuttrc', 'neomuttrc-file', 'neomuttlog'], + \ 'neomuttlog': ['foo.neomuttdebug'], + \ 'neomuttrc': ['Neomuttrc', '.neomuttrc', '.neomuttrc-file', '/.neomutt/neomuttrc', '/.neomutt/neomuttrc-file', 'Neomuttrc', 'Neomuttrc-file', 'any/.neomutt/neomuttrc', 'any/.neomutt/neomuttrc-file', 'neomuttrc', 'neomuttrc-file'], \ 'netrc': ['.netrc'], \ 'nginx': ['file.nginx', 'nginxfile.conf', 'filenginx.conf', 'any/etc/nginx/file', 'any/usr/local/nginx/conf/file', 'any/nginx/file.conf'], \ 'nim': ['file.nim', 'file.nims', 'file.nimble'], |