summaryrefslogtreecommitdiffstats
path: root/runtime/filetype.vim
diff options
context:
space:
mode:
authorMartin Tournoij <martin@arp242.net>2022-07-25 21:40:06 +0100
committerBram Moolenaar <Bram@vim.org>2022-07-25 21:40:06 +0100
commit1b67f07f7626b87d9ce3e16815970988983a2ddc (patch)
treeae1e42c4cb9ffdaeb34ead5befc0aef0cf166fa7 /runtime/filetype.vim
parent6d023f98dfbad6215a4e94ed7df28f8972b3ff9d (diff)
patch 9.0.0073: too many files recognized as bsdlv9.0.0073
Problem: Too many files recognized as bsdl. Solution: Use pattern "*.bsd" instead of "*bsd". (Martin Tournoij, closes #10783)
Diffstat (limited to 'runtime/filetype.vim')
-rw-r--r--runtime/filetype.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 761ed3f283..ce3838d10e 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -259,7 +259,7 @@ au BufNewFile,BufRead *.bb,*.bbappend,*.bbclass,*/build/conf/*.conf,*/meta{-*,}/
au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old setf xml
" BSDL
-au BufNewFile,BufRead *bsd,*.bsdl setf bsdl
+au BufNewFile,BufRead *.bsd,*.bsdl setf bsdl
" Bazel (http://bazel.io)
autocmd BufRead,BufNewFile *.bzl,*.bazel,WORKSPACE setf bzl