diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-02-17 23:05:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-17 23:05:48 +0100 |
commit | 1fd106ca88a606241e1e1fb8c73645dcea5ea5c8 (patch) | |
tree | 57462c8d035b217cb83c5ac21fcb1e464e5ed110 /src | |
parent | d1e3d8abd65023d9b5ca3cdde47479cf13dea1c2 (diff) | |
download | rneovim-1fd106ca88a606241e1e1fb8c73645dcea5ea5c8.tar.gz rneovim-1fd106ca88a606241e1e1fb8c73645dcea5ea5c8.tar.bz2 rneovim-1fd106ca88a606241e1e1fb8c73645dcea5ea5c8.zip |
vim-patch:8.2.4411: bicep files are not recognized (#17447)
Problem: Bicep files are not recognized.
Solution: Match *.bicep files. (Dundar Goc, closes vim/vim#9791)
https://github.com/vim/vim/commit/8e5ba693ad9377fbf4b047093624248b81eac854
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 b663032c24..dd14aa3e6f 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -81,6 +81,7 @@ let s:filename_checks = { \ 'bc': ['file.bc'], \ 'bdf': ['file.bdf'], \ 'bib': ['file.bib'], + \ 'bicep': ['file.bicep'], \ 'beancount': ['file.beancount'], \ 'bindzone': ['named.root', '/bind/db.file', '/named/db.file', 'any/bind/db.file', 'any/named/db.file'], \ 'blank': ['file.bl'], |