comparison runtime/syntax/cl.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
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
67 67
68 syn keyword clStatement clear clear_eol clear_eos close copy create unique with where empty define define ldefine delay_form delete escape exit_block exit_do exit_process field fork format get getfile getnext getprev goto head join maintain message no_join on_eop on_key on_exit on_delete openin openout openapp pause popenin popenout popenio print put range read redisplay refresh restart_block screen select sleep text unlock write and not or do 68 syn keyword clStatement clear clear_eol clear_eos close copy create unique with where empty define define ldefine delay_form delete escape exit_block exit_do exit_process field fork format get getfile getnext getprev goto head join maintain message no_join on_eop on_key on_exit on_delete openin openout openapp pause popenin popenout popenio print put range read redisplay refresh restart_block screen select sleep text unlock write and not or do
69 69
70 " Define the default highlighting. 70 " Define the default highlighting.
71 " Only when an item doesn't have highlighting yet 71 " Only when an item doesn't have highlighting yet
72 command -nargs=+ HiLink hi def link <args>
73 72
74 HiLink clifError Error 73 hi def link clifError Error
75 HiLink clSpaceError Error 74 hi def link clSpaceError Error
76 HiLink clWhile Repeat 75 hi def link clWhile Repeat
77 HiLink clConditional Conditional 76 hi def link clConditional Conditional
78 HiLink clDebug Debug 77 hi def link clDebug Debug
79 HiLink clNeedsWork Todo 78 hi def link clNeedsWork Todo
80 HiLink clTodo Todo 79 hi def link clTodo Todo
81 HiLink clComment Comment 80 hi def link clComment Comment
82 HiLink clProcedure Procedure 81 hi def link clProcedure Procedure
83 HiLink clBreak Procedure 82 hi def link clBreak Procedure
84 HiLink clInclude Include 83 hi def link clInclude Include
85 HiLink clSetOption Statement 84 hi def link clSetOption Statement
86 HiLink clSet Identifier 85 hi def link clSet Identifier
87 HiLink clPreProc PreProc 86 hi def link clPreProc PreProc
88 HiLink clOperator Operator 87 hi def link clOperator Operator
89 HiLink clNumber Number 88 hi def link clNumber Number
90 HiLink clString String 89 hi def link clString String
91 HiLink clQuote Delimiter 90 hi def link clQuote Delimiter
92 HiLink clReserved Identifier 91 hi def link clReserved Identifier
93 HiLink clFunction Function 92 hi def link clFunction Function
94 HiLink clStatement Statement 93 hi def link clStatement Statement
95 94
96 delcommand HiLink
97 95
98 let b:current_syntax = "cl" 96 let b:current_syntax = "cl"
99 97
100 " vim: ts=8 sw=8 98 " vim: ts=8 sw=8