comparison runtime/syntax/basic.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 34b4eb3a8458
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
139 " syn match basicMathsOperator "[<>+\*^/\\=-]" 139 " syn match basicMathsOperator "[<>+\*^/\\=-]"
140 syn match basicMathsOperator "-\|=\|[:<>+\*^/\\]\|AND\|OR" 140 syn match basicMathsOperator "-\|=\|[:<>+\*^/\\]\|AND\|OR"
141 141
142 " Define the default highlighting. 142 " Define the default highlighting.
143 " Only when an item doesn't have highlighting yet 143 " Only when an item doesn't have highlighting yet
144 command -nargs=+ HiLink hi def link <args>
145 144
146 HiLink basicLabel Label 145 hi def link basicLabel Label
147 HiLink basicConditional Conditional 146 hi def link basicConditional Conditional
148 HiLink basicRepeat Repeat 147 hi def link basicRepeat Repeat
149 HiLink basicLineNumber Comment 148 hi def link basicLineNumber Comment
150 HiLink basicNumber Number 149 hi def link basicNumber Number
151 HiLink basicError Error 150 hi def link basicError Error
152 HiLink basicStatement Statement 151 hi def link basicStatement Statement
153 HiLink basicString String 152 hi def link basicString String
154 HiLink basicComment Comment 153 hi def link basicComment Comment
155 HiLink basicSpecial Special 154 hi def link basicSpecial Special
156 HiLink basicTodo Todo 155 hi def link basicTodo Todo
157 HiLink basicFunction Identifier 156 hi def link basicFunction Identifier
158 HiLink basicTypeSpecifier Type 157 hi def link basicTypeSpecifier Type
159 HiLink basicFilenumber basicTypeSpecifier 158 hi def link basicFilenumber basicTypeSpecifier
160 "hi basicMathsOperator term=bold cterm=bold gui=bold 159 "hi basicMathsOperator term=bold cterm=bold gui=bold
161 160
162 delcommand HiLink
163 161
164 let b:current_syntax = "basic" 162 let b:current_syntax = "basic"
165 163
166 let &cpo = s:cpo_save 164 let &cpo = s:cpo_save
167 unlet s:cpo_save 165 unlet s:cpo_save