comparison runtime/syntax/kwt.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
50 syn region kwtUnpBody transparent keepend extend fold start="->\s*\[" start="^\s*\[" skip="\$\@<!{\_.\{-}\$\@<!}" end="\s]\s\=;\=$" end="^]\s\=;\=$" end="}]\s\=;\=$" 50 syn region kwtUnpBody transparent keepend extend fold start="->\s*\[" start="^\s*\[" skip="\$\@<!{\_.\{-}\$\@<!}" end="\s]\s\=;\=$" end="^]\s\=;\=$" end="}]\s\=;\=$"
51 syn region kwtRewBody transparent keepend extend fold start="->\s*<" start="^\s*<" end="\s>\s\=;\=$" end="^>\s\=;\=$" 51 syn region kwtRewBody transparent keepend extend fold start="->\s*<" start="^\s*<" end="\s>\s\=;\=$" end="^>\s\=;\=$"
52 52
53 " Define the default highlighting. 53 " Define the default highlighting.
54 " Only when an item doesn't have highlighting yet 54 " Only when an item doesn't have highlighting yet
55 command -nargs=+ HiLink hi def link <args>
56 55
57 HiLink kwtStatement cppStatement 56 hi def link kwtStatement cppStatement
58 HiLink kwtDecl cppStatement 57 hi def link kwtDecl cppStatement
59 HiLink kwtCast cppStatement 58 hi def link kwtCast cppStatement
60 HiLink kwtSep Delimiter 59 hi def link kwtSep Delimiter
61 HiLink kwtViews Label 60 hi def link kwtViews Label
62 HiLink kwtPhylum Type 61 hi def link kwtPhylum Type
63 HiLink kwtOption PreProc 62 hi def link kwtOption PreProc
64 "HiLink cText Comment 63 "hi def link cText Comment
65 64
66 delcommand HiLink
67 65
68 syn sync lines=300 66 syn sync lines=300
69 67
70 let b:current_syntax = "kwt" 68 let b:current_syntax = "kwt"
71 69