diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-09-02 22:31:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 22:31:31 -0700 |
commit | 3acfefb63ee70c8eac13bf6b308a0e73e6fb8007 (patch) | |
tree | 1a891b01dbca622ed8e4cbb5930d1a6425d146ba /runtime | |
parent | 948e625e1ecbdb1d4771e1481b3d6534b21250c9 (diff) | |
parent | 5fcdb630253b8d71fd30a2259f72aeb27e1676e0 (diff) | |
download | rneovim-3acfefb63ee70c8eac13bf6b308a0e73e6fb8007.tar.gz rneovim-3acfefb63ee70c8eac13bf6b308a0e73e6fb8007.tar.bz2 rneovim-3acfefb63ee70c8eac13bf6b308a0e73e6fb8007.zip |
Merge #12827 'vim-patch:8.2.{1554,1561,1564,1565,1566}'
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 41a9188905..32bd6daba0 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -236,10 +236,10 @@ 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,WORKSPACE,BUILD.bazel setf bzl +autocmd BufRead,BufNewFile *.bzl,*.bazel,WORKSPACE setf bzl if has("fname_case") " There is another check for BUILD further below. - autocmd BufRead,BufNewFile BUILD setf bzl + autocmd BufRead,BufNewFile *.BUILD,BUILD setf bzl endif " C or lpc @@ -2041,7 +2041,7 @@ au BufNewFile,BufRead bzr_log.* setf bzr " Bazel build file if !has("fname_case") - au BufNewFile,BufRead BUILD setf bzl + au BufNewFile,BufRead *.BUILD,BUILD setf bzl endif " BIND zone |