comparison runtime/syntax/cpp.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 169a62d5bcb9
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
51 51
52 " The minimum and maximum operators in GNU C++ 52 " The minimum and maximum operators in GNU C++
53 syn match cppMinMax "[<>]?" 53 syn match cppMinMax "[<>]?"
54 54
55 " Default highlighting 55 " Default highlighting
56 command -nargs=+ HiLink hi def link <args> 56 hi def link cppAccess cppStatement
57 HiLink cppAccess cppStatement 57 hi def link cppCast cppStatement
58 HiLink cppCast cppStatement 58 hi def link cppExceptions Exception
59 HiLink cppExceptions Exception 59 hi def link cppOperator Operator
60 HiLink cppOperator Operator 60 hi def link cppStatement Statement
61 HiLink cppStatement Statement 61 hi def link cppModifier Type
62 HiLink cppModifier Type 62 hi def link cppType Type
63 HiLink cppType Type 63 hi def link cppStorageClass StorageClass
64 HiLink cppStorageClass StorageClass 64 hi def link cppStructure Structure
65 HiLink cppStructure Structure 65 hi def link cppBoolean Boolean
66 HiLink cppBoolean Boolean 66 hi def link cppConstant Constant
67 HiLink cppConstant Constant 67 hi def link cppRawStringDelimiter Delimiter
68 HiLink cppRawStringDelimiter Delimiter 68 hi def link cppRawString String
69 HiLink cppRawString String 69 hi def link cppNumber Number
70 HiLink cppNumber Number
71 delcommand HiLink
72 70
73 let b:current_syntax = "cpp" 71 let b:current_syntax = "cpp"
74 72
75 " vim: ts=8 73 " vim: ts=8