comparison runtime/syntax/art.vim @ 3237:91e53bcb7946

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Fri, 30 Dec 2011 13:11:27 +0100
parents 3fc0f57ecb91
children
comparison
equal deleted inserted replaced
3236:12a5ea0526b1 3237:91e53bcb7946
1 " Vim syntax file 1 " Vim syntax file
2 " Language: ART-IM and ART*Enterprise 2 " Language: ART-IM and ART*Enterprise
3 " Maintainer: Dorai Sitaram <ds26@gte.com> 3 " Maintainer: Dorai Sitaram <ds26@gte.com>
4 " URL: http://www.ccs.neu.edu/~dorai/vimplugins/vimplugins.html 4 " URL: http://www.ccs.neu.edu/~dorai/vimplugins/vimplugins.html
5 " Last Change: Nov 6, 2002 5 " Last Change: 2011 Dec 28 by Thilo Six
6 6
7 if exists("b:current_syntax") 7 if exists("b:current_syntax")
8 finish 8 finish
9 endif 9 endif
10
11 let s:cpo_save = &cpo
12 set cpo&vim
10 13
11 syn case ignore 14 syn case ignore
12 15
13 syn keyword artspform => and assert bind 16 syn keyword artspform => and assert bind
14 syn keyword artspform declare def-art-fun deffacts defglobal defrule defschema do 17 syn keyword artspform declare def-art-fun deffacts defglobal defrule defschema do
40 hi def link artignore comment 43 hi def link artignore comment
41 hi def link artspform statement 44 hi def link artspform statement
42 hi def link artvariable function 45 hi def link artvariable function
43 46
44 let b:current_syntax = "art" 47 let b:current_syntax = "art"
48
49 let &cpo = s:cpo_save
50 unlet s:cpo_save