diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-06-24 13:41:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-24 13:41:50 +0200 |
commit | c2d696f0094fe50bf6256d56314f82a7724a2b4e (patch) | |
tree | 9c4f7d0b790e02956d8916a7a5ee0e5f836127a0 /test | |
parent | 31a51acdc3534f316dfedfaa37fea715f2a4814d (diff) | |
parent | fdf5013e218c55ca8f9bdb7cf5f16f8596330ea2 (diff) | |
download | rneovim-c2d696f0094fe50bf6256d56314f82a7724a2b4e.tar.gz rneovim-c2d696f0094fe50bf6256d56314f82a7724a2b4e.tar.bz2 rneovim-c2d696f0094fe50bf6256d56314f82a7724a2b4e.zip |
Merge pull request #24082 from smjonas/fix_24064
fix(filetype): correctly detect bash-fc-{id} files as "sh" (vim-patch:9.0.1644)
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_filetype.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim index fe23bd73b7..5acf16514f 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -535,7 +535,7 @@ let s:filename_checks = { \ 'services': ['/etc/services', 'any/etc/services'], \ 'setserial': ['/etc/serial.conf', 'any/etc/serial.conf'], \ 'sexplib': ['file.sexp'], - \ 'sh': ['.bashrc', 'file.bash', '/usr/share/doc/bash-completion/filter.sh','/etc/udev/cdsymlinks.conf', 'any/etc/udev/cdsymlinks.conf'], + \ 'sh': ['.bashrc', '.bash_profile', '.bash-profile', '.bash_logout', '.bash-logout', '.bash_aliases', '.bash-aliases', '/tmp/bash-fc-3Ozjlw', '/tmp/bash-fc.3Ozjlw', 'PKGBUILD', 'APKBUILD', 'file.bash', '/usr/share/doc/bash-completion/filter.sh', '/etc/udev/cdsymlinks.conf', 'any/etc/udev/cdsymlinks.conf'], \ 'sieve': ['file.siv', 'file.sieve'], \ 'sil': ['file.sil'], \ 'simula': ['file.sim'], |