comparison 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
comparison
equal deleted inserted replaced
20066:97f53c6954db 20067:ec40053dd3b5
232 232
233 " Blkid cache file 233 " Blkid cache file
234 au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old setf xml 234 au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old setf xml
235 235
236 " BSDL 236 " BSDL
237 au BufNewFile,BufRead *.bsdl setf bsdl 237 au BufNewFile,BufRead *bsd,*.bsdl setf bsdl
238 238
239 " Bazel (http://bazel.io) 239 " Bazel (http://bazel.io)
240 autocmd BufRead,BufNewFile *.bzl,WORKSPACE,BUILD.bazel setf bzl 240 autocmd BufRead,BufNewFile *.bzl,WORKSPACE,BUILD.bazel setf bzl
241 if has("fname_case") 241 if has("fname_case")
242 " There is another check for BUILD further below. 242 " There is another check for BUILD further below.
243 autocmd BufRead,BufNewFile BUILD setf bzl 243 autocmd BufRead,BufNewFile BUILD setf bzl
244 endif 244 endif
245 245
246 " C or lpc 246 " C or lpc
247 au BufNewFile,BufRead *.c call dist#ft#FTlpc() 247 au BufNewFile,BufRead *.c call dist#ft#FTlpc()
248 au BufNewFile,BufRead *.lpc,*.ulpc setf lpc 248 au BufNewFile,BufRead *.lpc,*.ulpc setf lpc