summaryrefslogtreecommitdiffstats
path: root/runtime/filetype.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-29 22:33:18 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-29 22:33:18 +0200
commit40af4e3903d0701318b1b176e5fa9cdb03bb0f98 (patch)
tree339b1b610ec2160a9340bf22510c6e7a879c7f88 /runtime/filetype.vim
parent1587a1e37db85425ae77054ab681a0bbb0d1affb (diff)
Updated runtime files. Add logcheck filetype plugin. (James Vega)
Diffstat (limited to 'runtime/filetype.vim')
-rw-r--r--runtime/filetype.vim5
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 369cabcb37..e4796c1498 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: 2010 Jul 26
+" Last Change: 2010 Jul 29
" Listen very carefully, I will say this only once
if exists("did_load_filetypes")
@@ -2403,6 +2403,9 @@ au! BufNewFile,BufRead *jarg*
" Kconfig
au BufNewFile,BufRead Kconfig.* call s:StarSetf('kconfig')
+" Logcheck
+au BufNewFile,BufRead /etc/logcheck/*.d*/* call s:StarSetf('logcheck')
+
" Makefile
au BufNewFile,BufRead [mM]akefile* call s:StarSetf('make')