# HG changeset patch # User Bram Moolenaar # Date 1587144604 -7200 # Node ID ec40053dd3b5419d6af92af7aac92cc3ea312142 # Parent 97f53c6954db4facf76946122d8189ff26d0c3a4 patch 8.2.0589: .bsd file type not recognized Commit: https://github.com/vim/vim/commit/0fc1288aefce25da0a2fb2a0aab75b0bd314403f Author: Bram Moolenaar 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) diff --git a/runtime/filetype.vim b/runtime/filetype.vim --- 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 diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -79,7 +79,7 @@ let s:filename_checks = { \ 'bib': ['file.bib'], \ 'bindzone': ['named.root'], \ 'blank': ['file.bl'], - \ 'bsdl': ['file.bsdl'], + \ 'bsdl': ['file.bsd', 'file.bsdl'], \ 'bst': ['file.bst'], \ 'bzr': ['bzr_log.any'], \ 'c': ['enlightenment/file.cfg', 'file.qc', 'file.c'], diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 589, +/**/ 588, /**/ 587,