diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-03-19 22:48:23 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-04-13 12:00:32 -0400 |
commit | dfb8dc8b45d125d3083ffae3898e39c0f4e96e53 (patch) | |
tree | 50283b7aeca439f46dcb3dad5925880926edd20a /runtime | |
parent | 5fe88337f086093a41611391e114f84173c45846 (diff) | |
download | rneovim-dfb8dc8b45d125d3083ffae3898e39c0f4e96e53.tar.gz rneovim-dfb8dc8b45d125d3083ffae3898e39c0f4e96e53.tar.bz2 rneovim-dfb8dc8b45d125d3083ffae3898e39c0f4e96e53.zip |
vim-patch:8.2.0415: bsdl filetype is not detected
Problem: Bsdl filetype is not detected.
Solution: Add an entry in the filetype list. (Daniel Kho, closes vim/vim#5810)
https://github.com/vim/vim/commit/40d235e7305ce6ff696e8301c62a41f1f07f8aca
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 49e1e9909b..dccd0119be 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -229,6 +229,9 @@ au BufNewFile,BufRead *.bl setf blank " Blkid cache file au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old setf xml +" BSDL +au BufNewFile,BufRead *.bsdl setf bsdl + " Bazel (http://bazel.io) autocmd BufRead,BufNewFile *.bzl,WORKSPACE,BUILD.bazel setf bzl if has("fname_case") @@ -1772,7 +1775,7 @@ au BufNewFile,BufRead *.va,*.vams setf verilogams au BufNewFile,BufRead *.sv,*.svh setf systemverilog " VHDL -au BufNewFile,BufRead *.hdl,*.vhd,*.vhdl,*.vbe,*.vst setf vhdl +au BufNewFile,BufRead *.hdl,*.vhd,*.vhdl,*.vbe,*.vst,*.vho setf vhdl " Vim script au BufNewFile,BufRead *.vim,*.vba,.exrc,_exrc setf vim |