From: =?UTF-8?q?Dundar=20G=C3=B6c?= Date: Thu, 17 Feb 2022 21:30:26 +0000 (+0000) Subject: patch 8.2.4411: bicep files are not recognized X-Git-Tag: v8.2.4411 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e5ba693ad9377fbf4b047093624248b81eac854;p=vim patch 8.2.4411: bicep files are not recognized Problem: Bicep files are not recognized. Solution: Match *.bicep files. (Dundar Goc, closes #9791) --- diff --git a/runtime/filetype.vim b/runtime/filetype.vim index fe1f12cb0..288697be1 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -44,7 +44,7 @@ endif " file name matches ft_ignore_pat. " When using this, the entry should probably be further down below with the " other StarSetf() calls. -func! s:StarSetf(ft) +func s:StarSetf(ft) if expand("") !~ g:ft_ignore_pat exe 'setf ' . a:ft endif @@ -229,6 +229,9 @@ au BufNewFile,BufRead *.bib setf bib " BibTeX Bibliography Style au BufNewFile,BufRead *.bst setf bst +" Bicep +au BufNewFile,BufRead *.bicep setf bicep + " BIND configuration " sudoedit uses namedXXXX.conf au BufNewFile,BufRead named*.conf,rndc*.conf,rndc*.key setf named @@ -2516,7 +2519,7 @@ endif " Function called for testing all functions defined here. These are " script-local, thus need to be executed here. " Returns a string with error messages (hopefully empty). -func! TestFiletypeFuncs(testlist) +func TestFiletypeFuncs(testlist) let output = '' for f in a:testlist try diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim index 9d1207056..2e28330bf 100644 --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -82,6 +82,7 @@ let s:filename_checks = { \ 'bdf': ['file.bdf'], \ 'beancount': ['file.beancount'], \ 'bib': ['file.bib'], + \ 'bicep': ['file.bicep'], \ 'bindzone': ['named.root', '/bind/db.file', '/named/db.file', 'any/bind/db.file', 'any/named/db.file'], \ 'blank': ['file.bl'], \ 'bsdl': ['file.bsd', 'file.bsdl', 'bsd', 'some-bsd'], diff --git a/src/version.c b/src/version.c index d8b00f1d3..5cfd0a9e8 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4411, /**/ 4410, /**/