summaryrefslogtreecommitdiffstats
path: root/runtime/filetype.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-21 21:29:36 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-21 21:29:36 +0000
commit433f7c88d56bb8fd99082314055305a656462a13 (patch)
tree5e23837d28ffd97fa77f99e4dea346d087e5f323 /runtime/filetype.vim
parent76916e60ed6296aff1b855408b81cc08b8e07257 (diff)
updated for version 7.0231
Diffstat (limited to 'runtime/filetype.vim')
-rw-r--r--runtime/filetype.vim5
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 86b4525ba3..f245eec3f5 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1,7 +1,7 @@
" Vim support file to detect file types
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2006 Mar 13
+" Last Change: 2006 Mar 21
" Listen very carefully, I will say this only once
if exists("did_load_filetypes")
@@ -1748,7 +1748,7 @@ au BufNewFile,BufRead *.hdl,*.vhd,*.vhdl,*.vbe,*.vst setf vhdl
au BufNewFile,BufRead *.vhdl_[0-9]* call s:StarSetf('vhdl')
" Vim script
-au BufNewFile,BufRead *.vim,.exrc,_exrc setf vim
+au BufNewFile,BufRead *.vim,*.vba,.exrc,_exrc setf vim
" Viminfo file
au BufNewFile,BufRead .viminfo,_viminfo setf viminfo
@@ -1925,6 +1925,7 @@ au StdinReadPost * if !did_filetype() | runtime! scripts.vim | endif
" Asterisk config file
au BufNewFile,BufRead *asterisk/*.conf* call s:StarSetf('asterisk')
+au BufNewFile,BufRead *asterisk*/*voicemail.conf* call s:StarSetf('asteriskvm')
" BIND zone
au BufNewFile,BufRead /var/named/* call s:StarSetf('bindzone')