File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 23
23
" C++ extensions
24
24
syn keyword cppStatement new delete this friend using
25
25
syn keyword cppAccess public protected private
26
- syn keyword cppType inline virtual explicit export bool wchar_t
26
+ syn keyword cppModifier inline virtual explicit export
27
+ syn keyword cppType bool wchar_t
27
28
syn keyword cppExceptions throw try catch
28
29
syn keyword cppOperator operator typeid
29
30
syn keyword cppOperator and bitor or xor compl bitand and_eq or_eq xor_eq not not_eq
@@ -36,7 +37,8 @@ syn keyword cppConstant __cplusplus
36
37
37
38
" C++ 11 extensions
38
39
if ! exists (" cpp_no_cpp11" )
39
- syn keyword cppType override final nullptr_t
40
+ syn keyword cppModifier override final
41
+ syn keyword cppType nullptr_t
40
42
syn keyword cppExceptions noexcept
41
43
syn keyword cppStorageClass constexpr decltype thread_local
42
44
syn keyword cppConstant nullptr
@@ -70,6 +72,7 @@ if version >= 508 || !exists("did_cpp_syntax_inits")
70
72
HiLink cppExceptions Exception
71
73
HiLink cppOperator Operator
72
74
HiLink cppStatement Statement
75
+ HiLink cppModifier Type
73
76
HiLink cppType Type
74
77
HiLink cppStorageClass StorageClass
75
78
HiLink cppStructure Structure
You can’t perform that action at this time.
0 commit comments