summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSon Luong Ngoc <sluongng@gmail.com>2023-06-24 17:11:04 +0100
committerBram Moolenaar <Bram@vim.org>2023-06-24 17:11:04 +0100
commitb46e0f3263acd99c61df06ee3c4d1f6e0b471bc3 (patch)
tree4fca1a11286ad2d55cec9c9070db406af86e8fb1
parent2d8e9985440d2f1ebb1be55296f371e10739bc76 (diff)
patch 9.0.1661: BUCK files are not recognizedv9.0.1661
Problem: BUCK files are not recognized. Solution: Recognize BUCK files as "bzl". (Son Luong Ngoc, closes #12564)
-rw-r--r--runtime/filetype.vim10
-rw-r--r--src/testdir/test_filetype.vim2
-rw-r--r--src/version.c2
3 files changed, 8 insertions, 6 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index aa33b6529a..bead0f31f2 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -266,11 +266,11 @@ au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old setf xml
" BSDL
au BufNewFile,BufRead *.bsd,*.bsdl setf bsdl
-" Bazel (http://bazel.io)
+" Bazel (https://bazel.build) and Buck2 (https://buck2.build/)
autocmd BufRead,BufNewFile *.bzl,*.bazel,WORKSPACE,WORKSPACE.bzlmod setf bzl
if has("fname_case")
- " There is another check for BUILD further below.
- autocmd BufRead,BufNewFile *.BUILD,BUILD setf bzl
+ " There is another check for BUILD and BUCK further below.
+ autocmd BufRead,BufNewFile *.BUILD,BUILD,BUCK setf bzl
endif
" Busted (Lua unit testing framework - configuration files)
@@ -2605,9 +2605,9 @@ au BufNewFile,BufRead *asterisk*/*voicemail.conf* call s:StarSetf('asteriskvm')
" Bazaar version control
au BufNewFile,BufRead bzr_log.* setf bzr
-" Bazel build file
+" Bazel and Buck2 build file
if !has("fname_case")
- au BufNewFile,BufRead *.BUILD,BUILD setf bzl
+ au BufNewFile,BufRead *.BUILD,BUILD,BUCK setf bzl
endif
" BIND zone
diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim
index a704fb624a..cf74a02552 100644
--- a/src/testdir/test_filetype.vim
+++ b/src/testdir/test_filetype.vim
@@ -814,7 +814,7 @@ enddef
def s:GetFilenameCaseChecks(): dict<list<string>>
return {
modula2: ['file.DEF'],
- bzl: ['file.BUILD', 'BUILD'],
+ bzl: ['file.BUILD', 'BUILD', 'BUCK'],
}
enddef
diff --git a/src/version.c b/src/version.c
index ba999074ba..437da6577e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1661,
+/**/
1660,
/**/
1659,