diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-02-12 12:03:02 +0100 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2022-02-12 12:04:09 +0100 |
commit | 3b13c7fc8b15d2ab90c070131c0268711fcf4f10 (patch) | |
tree | 211422fa7f1da792bd98833817b000fc87a4c20c /src | |
parent | a7321e37a75fff5c0048b0779cf91d504455d6f3 (diff) | |
download | rneovim-3b13c7fc8b15d2ab90c070131c0268711fcf4f10.tar.gz rneovim-3b13c7fc8b15d2ab90c070131c0268711fcf4f10.tar.bz2 rneovim-3b13c7fc8b15d2ab90c070131c0268711fcf4f10.zip |
vim-patch:8.2.4352: ReScript files are not recognized
Problem: ReScript files are not recognized.
Solution: Add the *.res and *.resi patterns. (Ananda Umamil, closes vim/vim#9752)
https://github.com/vim/vim/commit/0c3cc2fec31521b0697edc406f85b7a43e979860
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index 4ef35b3a46..b663032c24 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -435,6 +435,7 @@ let s:filename_checks = { \ 'readline': ['.inputrc', 'inputrc'], \ 'remind': ['.reminders', 'file.remind', 'file.rem', '.reminders-file'], \ 'rego': ['file.rego'], + \ 'rescript': ['file.res', 'file.resi'], \ 'resolv': ['resolv.conf'], \ 'reva': ['file.frt'], \ 'rexx': ['file.rex', 'file.orx', 'file.rxo', 'file.rxj', 'file.jrexx', 'file.rexxj', 'file.rexx', 'file.testGroup', 'file.testUnit'], |