mirror of
https://github.com/neovim/neovim.git
synced 2025-10-14 13:56:05 +00:00
vim-patch:9.0.1191: some Bazel files are not recognized (#21784)
Problem: Some Bazel files are not recognized.
Solution: Add an extra Bazel pattern. (Keith Smily, closes vim/vim#11807)
3213952966
Co-authored-by: Keith Smiley <keithbsmiley@gmail.com>
This commit is contained in:
@@ -1321,6 +1321,7 @@ local filename = {
|
|||||||
['GNUmakefile.am'] = 'automake',
|
['GNUmakefile.am'] = 'automake',
|
||||||
['named.root'] = 'bindzone',
|
['named.root'] = 'bindzone',
|
||||||
WORKSPACE = 'bzl',
|
WORKSPACE = 'bzl',
|
||||||
|
['WORKSPACE.bzlmod'] = 'bzl',
|
||||||
BUILD = 'bzl',
|
BUILD = 'bzl',
|
||||||
['cabal.project'] = 'cabalproject',
|
['cabal.project'] = 'cabalproject',
|
||||||
['cabal.config'] = 'cabalconfig',
|
['cabal.config'] = 'cabalconfig',
|
||||||
|
@@ -91,7 +91,7 @@ let s:filename_checks = {
|
|||||||
\ 'blueprint': ['file.blp'],
|
\ 'blueprint': ['file.blp'],
|
||||||
\ 'bsdl': ['file.bsd', 'file.bsdl'],
|
\ 'bsdl': ['file.bsd', 'file.bsdl'],
|
||||||
\ 'bst': ['file.bst'],
|
\ 'bst': ['file.bst'],
|
||||||
\ 'bzl': ['file.bazel', 'file.bzl', 'WORKSPACE'],
|
\ 'bzl': ['file.bazel', 'file.bzl', 'WORKSPACE', 'WORKSPACE.bzlmod'],
|
||||||
\ 'bzr': ['bzr_log.any', 'bzr_log.file'],
|
\ 'bzr': ['bzr_log.any', 'bzr_log.file'],
|
||||||
\ 'c': ['enlightenment/file.cfg', 'file.qc', 'file.c', 'some-enlightenment/file.cfg'],
|
\ 'c': ['enlightenment/file.cfg', 'file.qc', 'file.c', 'some-enlightenment/file.cfg'],
|
||||||
\ 'cabal': ['file.cabal'],
|
\ 'cabal': ['file.cabal'],
|
||||||
|
Reference in New Issue
Block a user