diff runtime/scripts.vim @ 556:f9eaf0a9872d v7.0157

updated for version 7.0157
author vimboss
date Wed, 12 Oct 2005 21:01:44 +0000
parents da9142bd190a
children bc95c6c4bac1
line wrap: on
line diff
--- 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