mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
vim-patch:9.0.1678: blade files are not recognized (#24601)
Problem: Blade files are not recognized.
Solution: Add a pattern for Blade files. (closes vim/vim#12650)
ad34abee25
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -1809,6 +1809,7 @@ local pattern = {
|
||||
['.*/build/conf/.*%.conf'] = 'bitbake',
|
||||
['.*/meta/conf/.*%.conf'] = 'bitbake',
|
||||
['.*/meta%-.*/conf/.*%.conf'] = 'bitbake',
|
||||
['.*%.blade%.php'] = 'blade',
|
||||
['bzr_log%..*'] = 'bzr',
|
||||
['.*enlightenment/.*%.cfg'] = 'c',
|
||||
['${HOME}/cabal%.config'] = 'cabalconfig',
|
||||
|
@@ -112,6 +112,7 @@ func s:GetFilenameChecks() abort
|
||||
\ 'bicep': ['file.bicep'],
|
||||
\ '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'],
|
||||
\ 'blade': ['file.blade.php'],
|
||||
\ 'blank': ['file.bl'],
|
||||
\ 'blueprint': ['file.blp'],
|
||||
\ 'bsdl': ['file.bsd', 'file.bsdl'],
|
||||
|
Reference in New Issue
Block a user