diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-24 22:22:18 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-24 22:22:18 +0200 |
commit | 56b45b9b37285f9e139b55a4343a03f17187340b (patch) | |
tree | e30fadb79fcdd4deeb7f602145cbe1f64269a976 /runtime/filetype.vim | |
parent | df2bc27b52944fbb75b8203a22f3ebde172e9c79 (diff) | |
download | vim-56b45b9b37285f9e139b55a4343a03f17187340b.zip |
Update runtime files.
Diffstat (limited to 'runtime/filetype.vim')
-rw-r--r-- | runtime/filetype.vim | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index ab10a5023..f408d9960 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: 2013 Jun 12 +" Last Change: 2013 Jun 24 " Listen very carefully, I will say this only once if exists("did_load_filetypes") @@ -930,6 +930,23 @@ au BufNewFile,BufRead *.inf,*.INF setf inform " Initng au BufNewFile,BufRead */etc/initng/**/*.i,*.ii setf initng +" Innovation Data Processing +au BufRead,BufNewFile UPSTREAM.DAT,upstream.dat setf upstreamdat +au BufRead,BufNewFile UPSTREAM.*.DAT,upstream.*.dat setf upstreamdat +au BufRead,BufNewFile *.UPSTREAM.DAT,*.upstream.dat setf upstreamdat +au BufRead,BufNewFile UPSTREAM.LOG,upstream.log setf upstreamlog +au BufRead,BufNewFile UPSTREAM.*.LOG,upstream.*.log setf upstreamlog +au BufRead,BufNewFile *.UPSTREAM.LOG,*.upstream.log setf upstreamlog +au BufRead,BufNewFile UPSTREAMInstall.log,upstreaminstall.log setf upstreaminstalllog +au BufRead,BufNewFile UPSTREAMInstall.*.log,upstreaminstall.*.log setf upstreaminstalllog +au BufRead,BufNewFile *.UPSTREAMInstall.log,*.upstreaminstall.log setf upstreaminstalllog +au BufRead,BufNewFile USSERVER.LOG,usserver.log setf usserverlog +au BufRead,BufNewFile USSERVER.*.LOG,usserver.*.log setf usserverlog +au BufRead,BufNewFile *.USSERVER.LOG,*.usserver.log setf usserverlog +au BufRead,BufNewFile USW2KAgt.log,usw2kagt.log setf usw2kagtlog +au BufRead,BufNewFile USW2KAgt.*.log,usw2kagt.*.log setf usw2kagtlog +au BufRead,BufNewFile *.USW2KAgt.log,*.usw2kagt.log setf usw2kagtlog + " Ipfilter au BufNewFile,BufRead ipf.conf,ipf6.conf,ipf.rules setf ipfilter |