8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30e3184 commit 7e8ebd3Copy full SHA for 7e8ebd3
syntax/cpp.vim
@@ -42,6 +42,11 @@ if !exists("cpp_no_cpp11")
42
syn region cppRawString matchgroup=cppRawDelimiter start=+\%(u8\|[uLU]\)\=R"\z([[:alnum:]_{}[\]#<>%:;.?*\+\-/\^&|~!=,"']\{,16}\)(+ end=+)\z1"+ contains=@Spell
43
endif
44
45
+" C++ 14 extensions
46
+if !exists("cpp_no_cpp14")
47
+ syn match cppNumber display "\<0b[01]\+\(u\=l\{0,2}\|ll\=u\)\>"
48
+endif
49
+
50
" The minimum and maximum operators in GNU C++
51
syn match cppMinMax "[<>]?"
52
@@ -65,6 +70,7 @@ if version >= 508 || !exists("did_cpp_syntax_inits")
65
70
HiLink cppConstant Constant
66
71
HiLink cppRawDelimiter Delimiter
67
72
HiLink cppRawString String
73
+ HiLink cppNumber Number
68
74
delcommand HiLink
69
75
76
0 commit comments