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

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Fri, 30 Dec 2011 13:11:27 +0100
parents 3fc0f57ecb91
children 43efa4f5a8ea
comparison
equal deleted inserted replaced
3236:12a5ea0526b1 3237:91e53bcb7946
1 " Vim syntax file 1 " Vim syntax file
2 " Language: ABEL 2 " Language: ABEL
3 " Maintainer: John Cook <john.cook@kla-tencor.com> 3 " Maintainer: John Cook <johncook3@gmail.com>
4 " Last Change: 2001 Sep 2 4 " Last Change: 2011 Dec 27
5 5
6 " For version 5.x: Clear all syntax items 6 " For version 5.x: Clear all syntax items
7 " For version 6.x: Quit when a syntax file was already loaded 7 " For version 6.x: Quit when a syntax file was already loaded
8 if version < 600 8 if version < 600
9 syntax clear 9 syntax clear
10 elseif exists("b:current_syntax") 10 elseif exists("b:current_syntax")
11 finish 11 finish
12 endif 12 endif
13
14 let s:cpo_save = &cpo
15 set cpo&vim
13 16
14 " this language is oblivious to case 17 " this language is oblivious to case
15 syn case ignore 18 syn case ignore
16 19
17 " A bunch of keywords 20 " A bunch of keywords
162 165
163 delcommand HiLink 166 delcommand HiLink
164 endif 167 endif
165 168
166 let b:current_syntax = "abel" 169 let b:current_syntax = "abel"
170
171 let &cpo = s:cpo_save
172 unlet s:cpo_save
173
167 " vim:ts=8 174 " vim:ts=8