comparison runtime/syntax/icon.vim @ 10051:46763b01cd9a

commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 31 22:22:10 2016 +0200 Updated runtime files. Remove HiLink commands.
author Christian Brabandt <cb@256bit.org>
date Wed, 31 Aug 2016 22:30:08 +0200
parents 43efa4f5a8ea
children 1e9e9d89f0ee
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
153 exec "syn sync ccomment iconComment minlines=" . icon_minlines 153 exec "syn sync ccomment iconComment minlines=" . icon_minlines
154 154
155 " Define the default highlighting. 155 " Define the default highlighting.
156 156
157 " Only when an item doesn't have highlighting 157 " Only when an item doesn't have highlighting
158 command -nargs=+ HiLink hi def link <args>
159 158
160 " The default methods for highlighting. Can be overridden later 159 " The default methods for highlighting. Can be overridden later
161 160
162 " HiLink iconSpecialCharacter iconSpecial 161 " hi def link iconSpecialCharacter iconSpecial
163 162
164 HiLink iconOctalError iconError 163 hi def link iconOctalError iconError
165 HiLink iconParenError iconError 164 hi def link iconParenError iconError
166 HiLink iconInParen iconError 165 hi def link iconInParen iconError
167 HiLink iconCommentError iconError 166 hi def link iconCommentError iconError
168 HiLink iconSpaceError iconError 167 hi def link iconSpaceError iconError
169 HiLink iconCommentError iconError 168 hi def link iconCommentError iconError
170 HiLink iconIncluded iconString 169 hi def link iconIncluded iconString
171 HiLink iconCommentString iconString 170 hi def link iconCommentString iconString
172 HiLink iconComment2String iconString 171 hi def link iconComment2String iconString
173 HiLink iconCommentSkip iconComment 172 hi def link iconCommentSkip iconComment
174 173
175 HiLink iconUserLabel Label 174 hi def link iconUserLabel Label
176 HiLink iconCharacter Character 175 hi def link iconCharacter Character
177 HiLink iconNumber Number 176 hi def link iconNumber Number
178 HiLink iconRadix Number 177 hi def link iconRadix Number
179 HiLink iconFloat Float 178 hi def link iconFloat Float
180 HiLink iconInclude Include 179 hi def link iconInclude Include
181 HiLink iconPreProc PreProc 180 hi def link iconPreProc PreProc
182 HiLink iconDefine Macro 181 hi def link iconDefine Macro
183 HiLink iconError Error 182 hi def link iconError Error
184 HiLink iconStatement Statement 183 hi def link iconStatement Statement
185 HiLink iconPreCondit PreCondit 184 hi def link iconPreCondit PreCondit
186 HiLink iconString String 185 hi def link iconString String
187 HiLink iconCset String 186 hi def link iconCset String
188 HiLink iconComment Comment 187 hi def link iconComment Comment
189 HiLink iconSpecial SpecialChar 188 hi def link iconSpecial SpecialChar
190 HiLink iconTodo Todo 189 hi def link iconTodo Todo
191 HiLink iconStorageClass StorageClass 190 hi def link iconStorageClass StorageClass
192 HiLink iconFunction Statement 191 hi def link iconFunction Statement
193 HiLink iconReserved Label 192 hi def link iconReserved Label
194 HiLink iconKeyword Operator 193 hi def link iconKeyword Operator
195 194
196 "HiLink iconIdentifier Identifier 195 "hi def link iconIdentifier Identifier
197 196
198 delcommand HiLink
199 197
200 let b:current_syntax = "icon" 198 let b:current_syntax = "icon"
201 199