comparison runtime/syntax/exim.vim @ 10048:43efa4f5a8ea

commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 30 23:26:57 2016 +0200 Updated runtime files. Remove version checks for Vim older than 6.0.
author Christian Brabandt <cb@256bit.org>
date Tue, 30 Aug 2016 23:30:09 +0200
parents 3fc0f57ecb91
children 46763b01cd9a
comparison
equal deleted inserted replaced
10047:a62862410ca1 10048:43efa4f5a8ea
4 " Maintainer: David Ne\v{c}as (Yeti) <yeti@physics.muni.cz> 4 " Maintainer: David Ne\v{c}as (Yeti) <yeti@physics.muni.cz>
5 " Last Change: 2002-10-15 5 " Last Change: 2002-10-15
6 " URL: http://trific.ath.cx/Ftp/vim/syntax/exim.vim 6 " URL: http://trific.ath.cx/Ftp/vim/syntax/exim.vim
7 7
8 " Setup 8 " Setup
9 if version >= 600 9 " quit when a syntax file was already loaded
10 if exists("b:current_syntax") 10 if exists("b:current_syntax")
11 finish 11 finish
12 endif
13 else
14 syntax clear
15 endif 12 endif
16 13
17 syn case match 14 syn case match
18 15
19 " Base constructs 16 " Base constructs
89 syn keyword eximKeyword driver public_name server_set_id server_mail_auth_condition 86 syn keyword eximKeyword driver public_name server_set_id server_mail_auth_condition
90 syn keyword eximKeyword server_prompts server_condition client_send 87 syn keyword eximKeyword server_prompts server_condition client_send
91 syn keyword eximKeyword server_secret client_name client_secret 88 syn keyword eximKeyword server_secret client_name client_secret
92 89
93 " Define the default highlighting 90 " Define the default highlighting
94 if version >= 508 || !exists("did_exim_syntax_inits") 91 command -nargs=+ HiLink hi def link <args>
95 if version < 508
96 let did_exim_syntax_inits = 1
97 command -nargs=+ HiLink hi link <args>
98 else
99 command -nargs=+ HiLink hi def link <args>
100 endif
101 92
102 HiLink eximComment Comment 93 HiLink eximComment Comment
103 HiLink eximFixme Todo 94 HiLink eximFixme Todo
104 HiLink eximEnd Keyword 95 HiLink eximEnd Keyword
105 HiLink eximNumber Number 96 HiLink eximNumber Number
106 HiLink eximDriverName Constant 97 HiLink eximDriverName Constant
107 HiLink eximConstant Constant 98 HiLink eximConstant Constant
108 HiLink eximTime Constant 99 HiLink eximTime Constant
109 HiLink eximKeyword Type 100 HiLink eximKeyword Type
110 HiLink eximSpecialChar Special 101 HiLink eximSpecialChar Special
111 HiLink eximMacroName Preproc 102 HiLink eximMacroName Preproc
112 HiLink eximTransport Identifier 103 HiLink eximTransport Identifier
113 104
114 delcommand HiLink 105 delcommand HiLink
115 endif
116 106
117 let b:current_syntax = "exim" 107 let b:current_syntax = "exim"