mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 9.0.1768: Runtime: no support for bicep files
Problem: Runtime: no support for bicep files Solution: Add filetype support for bicepparam closes: #12784 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Scott McKendry <scott.c.mckendry@gmail.com>
This commit is contained in:
committed by
Christian Brabandt
parent
d4376dc3eb
commit
2d0988ef93
@@ -245,7 +245,7 @@ au BufNewFile,BufRead *.bib setf bib
|
|||||||
au BufNewFile,BufRead *.bst setf bst
|
au BufNewFile,BufRead *.bst setf bst
|
||||||
|
|
||||||
" Bicep
|
" Bicep
|
||||||
au BufNewFile,BufRead *.bicep setf bicep
|
au BufNewFile,BufRead *.bicep,*.bicepparam setf bicep
|
||||||
|
|
||||||
" BIND configuration
|
" BIND configuration
|
||||||
" sudoedit uses namedXXXX.conf
|
" sudoedit uses namedXXXX.conf
|
||||||
|
@@ -119,7 +119,7 @@ def s:GetFilenameChecks(): dict<list<string>>
|
|||||||
bdf: ['file.bdf'],
|
bdf: ['file.bdf'],
|
||||||
beancount: ['file.beancount'],
|
beancount: ['file.beancount'],
|
||||||
bib: ['file.bib'],
|
bib: ['file.bib'],
|
||||||
bicep: ['file.bicep'],
|
bicep: ['file.bicep', 'file.bicepparam'],
|
||||||
bindzone: ['named.root', '/bind/db.file', '/named/db.file', 'any/bind/db.file', 'any/named/db.file'],
|
bindzone: ['named.root', '/bind/db.file', '/named/db.file', 'any/bind/db.file', 'any/named/db.file'],
|
||||||
bitbake: ['file.bb', 'file.bbappend', 'file.bbclass', 'build/conf/local.conf', 'meta/conf/layer.conf', 'build/conf/bbappend.conf', 'meta-layer/conf/distro/foo.conf'],
|
bitbake: ['file.bb', 'file.bbappend', 'file.bbclass', 'build/conf/local.conf', 'meta/conf/layer.conf', 'build/conf/bbappend.conf', 'meta-layer/conf/distro/foo.conf'],
|
||||||
blade: ['file.blade.php'],
|
blade: ['file.blade.php'],
|
||||||
|
@@ -695,6 +695,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1768,
|
||||||
/**/
|
/**/
|
||||||
1767,
|
1767,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user