]> granicus.if.org Git - vim/commitdiff
patch 9.0.1191: some Bazel files are not recognized v9.0.1191
authorKeith Smiley <keithbsmiley@gmail.com>
Fri, 13 Jan 2023 15:35:17 +0000 (15:35 +0000)
committerBram Moolenaar <Bram@vim.org>
Fri, 13 Jan 2023 15:35:17 +0000 (15:35 +0000)
Problem:    Some Bazel files are not recognized.
Solution:   Add an extra Bazel pattern. (Keith Smily, closes #11807)

runtime/filetype.vim
src/testdir/test_filetype.vim
src/version.c

index d19906327e645106f9ae048c9b604c8cb5b92146..dcd83b4e1a7e60dfb615615211d337c99c385a5a 100644 (file)
@@ -264,7 +264,7 @@ au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old   setf xml
 au BufNewFile,BufRead *.bsd,*.bsdl                     setf bsdl
 
 " Bazel (http://bazel.io)
-autocmd BufRead,BufNewFile *.bzl,*.bazel,WORKSPACE     setf bzl
+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
index d0cd3c5e3cab78ef0471617ac3ae98dda292b635..b58fb400d2274be1b359180d7656a36a7ed8d455 100644 (file)
@@ -89,7 +89,7 @@ let s:filename_checks = {
     \ 'blueprint': ['file.blp'],
     \ 'bsdl': ['file.bsd', 'file.bsdl'],
     \ 'bst': ['file.bst'],
-    \ 'bzl': ['file.bazel', 'file.bzl', 'WORKSPACE'],
+    \ 'bzl': ['file.bazel', 'file.bzl', 'WORKSPACE', 'WORKSPACE.bzlmod'],
     \ 'bzr': ['bzr_log.any', 'bzr_log.file'],
     \ 'c': ['enlightenment/file.cfg', 'file.qc', 'file.c', 'some-enlightenment/file.cfg'],
     \ 'cabal': ['file.cabal'],
index 202cfca743f3ebda5369756fcd78586e7102cf02..248b4203c32341f7ffbeed3294b75644da2b8e19 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1191,
 /**/
     1190,
 /**/