diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-11-28 00:58:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 07:58:31 +0800 |
commit | a314703cf1b9ccc654162c5d55b819aee66aa8b6 (patch) | |
tree | 2edacde6492c0bad2f5dbe7f2e1d1b90df80f600 /test/old/testdir | |
parent | 718053b7a97c4e2fbaa6077d3c9f4dc7012c8aad (diff) | |
download | rneovim-a314703cf1b9ccc654162c5d55b819aee66aa8b6.tar.gz rneovim-a314703cf1b9ccc654162c5d55b819aee66aa8b6.tar.bz2 rneovim-a314703cf1b9ccc654162c5d55b819aee66aa8b6.zip |
vim-patch:9.0.2131: not all nushell files detected (#26260)
Problem: not all nushell files detected
Solution: use *.nu to detect nushell files
closes: vim/vim#13586
https://github.com/vim/vim/commit/b9efc72c2432f2d2a633c12d3a5b9fc3efb7b6e7
Co-authored-by: Daniel Buch Hansen <boogiewasthere@gmail.com>
Diffstat (limited to 'test/old/testdir')
-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 f197039ec5..87044a06b5 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -454,7 +454,7 @@ func s:GetFilenameChecks() abort \ 'nqc': ['file.nqc'], \ 'nroff': ['file.tr', 'file.nr', 'file.roff', 'file.tmac', 'file.mom', 'tmac.file'], \ 'nsis': ['file.nsi', 'file.nsh'], - \ 'nu': ['env.nu', 'config.nu'], + \ 'nu': ['file.nu'], \ 'obj': ['file.obj'], \ 'objdump': ['file.objdump', 'file.cppobjdump'], \ 'obse': ['file.obl', 'file.obse', 'file.oblivion', 'file.obscript'], |