diff options
author | Matthieu Coudron <mattator@gmail.com> | 2020-04-18 04:09:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 04:09:32 +0200 |
commit | e5da4fd557a266ec5931be90c83fd600167ac588 (patch) | |
tree | 732c8e500c50f59979de90aa30bae7b2f5b3dcc7 /runtime | |
parent | fb4c7a53cfe4d4c8a786c8a5dc3c4b999c2df815 (diff) | |
parent | b3d669b40bd4736d42c52430ec84d76c2f5151eb (diff) | |
download | rneovim-e5da4fd557a266ec5931be90c83fd600167ac588.tar.gz rneovim-e5da4fd557a266ec5931be90c83fd600167ac588.tar.bz2 rneovim-e5da4fd557a266ec5931be90c83fd600167ac588.zip |
Merge pull request #12145 from janlazo/vim-8.2.0584
vim-patch:8.2.{584,589}
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index dbdd90041c..5068f9be76 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -230,13 +230,13 @@ au BufNewFile,BufRead *.bl setf blank au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old setf xml " BSDL -au BufNewFile,BufRead *.bsdl setf bsdl +au BufNewFile,BufRead *bsd,*.bsdl setf bsdl " Bazel (http://bazel.io) autocmd BufRead,BufNewFile *.bzl,WORKSPACE,BUILD.bazel setf bzl if has("fname_case") " There is another check for BUILD further below. - autocmd BufRead,BufNewFile BUILD setf bzl + autocmd BufRead,BufNewFile BUILD setf bzl endif " C or lpc |