diff options
Diffstat (limited to 'runtime/syntax/art.vim')
-rw-r--r-- | runtime/syntax/art.vim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/syntax/art.vim b/runtime/syntax/art.vim index c1faddb1e..855119810 100644 --- a/runtime/syntax/art.vim +++ b/runtime/syntax/art.vim @@ -2,12 +2,15 @@ " Language: ART-IM and ART*Enterprise " Maintainer: Dorai Sitaram <ds26@gte.com> " URL: http://www.ccs.neu.edu/~dorai/vimplugins/vimplugins.html -" Last Change: Nov 6, 2002 +" Last Change: 2011 Dec 28 by Thilo Six if exists("b:current_syntax") finish endif +let s:cpo_save = &cpo +set cpo&vim + syn case ignore syn keyword artspform => and assert bind @@ -42,3 +45,6 @@ hi def link artspform statement hi def link artvariable function let b:current_syntax = "art" + +let &cpo = s:cpo_save +unlet s:cpo_save |