diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-01-07 06:09:28 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-01-07 06:09:28 +0100 |
commit | 438f67a0040ab4f517c68f446f4a03a6c9e9096d (patch) | |
tree | cc46840230d9ad3b9d1a39bdb2b18af5fcc52074 /runtime/filetype.vim | |
parent | 2fda30146920a1b0bd9cdac7e644a28e4b873b89 (diff) | |
download | vim-438f67a0040ab4f517c68f446f4a03a6c9e9096d.zip |
Updated runtime files.
Diffstat (limited to 'runtime/filetype.vim')
-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 20775e9d2..88d262013 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 Nov 13 +" Last Change: 2014 Jan 06 " Listen very carefully, I will say this only once if exists("did_load_filetypes") @@ -106,6 +106,9 @@ au BufNewFile,BufRead *.run setf ampl " Ant au BufNewFile,BufRead build.xml setf ant +" Arduino +au BufNewFile,BufRead *.ino,*.pde setf arduino + " Apache style config file au BufNewFile,BufRead proftpd.conf* call s:StarSetf('apachestyle') |