diff runtime/filetype.vim @ 20067:ec40053dd3b5 v8.2.0589

patch 8.2.0589: .bsd file type not recognized Commit: https://github.com/vim/vim/commit/0fc1288aefce25da0a2fb2a0aab75b0bd314403f Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 17 19:23:06 2020 +0200 patch 8.2.0589: .bsd file type not recognized Problem: .bsd file type not recognized. Solution: Recognize .bsd as BSDL. (Daniel Kho, closes https://github.com/vim/vim/issues/5945)
author Bram Moolenaar <Bram@vim.org>
date Fri, 17 Apr 2020 19:30:04 +0200
parents 9cbe7ba51ce5
children bd021eb62e73
line wrap: on
line diff
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -234,13 +234,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