summaryrefslogtreecommitdiff
path: root/runtime/scripts.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-10-12 21:01:44 +0000
committerBram Moolenaar <Bram@vim.org>2005-10-12 21:01:44 +0000
commitaf289d333a2985051948a53d510fa345df1ddeb3 (patch)
tree83e6be2d0b33180e665007d378554c94f3e83996 /runtime/scripts.vim
parenta5fac54aead319a3a47849df0f2dc1fc59c5dd11 (diff)
downloadvim-git-af289d333a2985051948a53d510fa345df1ddeb3.tar.gz
updated for version 7.0157v7.0157
Diffstat (limited to 'runtime/scripts.vim')
-rw-r--r--runtime/scripts.vim6
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/scripts.vim b/runtime/scripts.vim
index 06a6d3619..7abab1c17 100644
--- a/runtime/scripts.vim
+++ b/runtime/scripts.vim
@@ -1,7 +1,7 @@
" Vim support file to detect file types in scripts
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2005 Sep 20
+" Last change: 2005 Oct 12
" This file is called by an autocommand for every file that has just been
" loaded into a buffer. It checks if the type of file can be recognized by
@@ -138,6 +138,10 @@ if s:line1 =~ "^#!"
elseif s:name =~ 'scheme'
set ft=scheme
+ " CFEngine scripts
+ elseif s:name =~ 'cfengine'
+ set ft=cfengine
+
endif
unlet s:name