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.
2 parents 98eb6f6 + 7e8ebd3 commit 5132f6dCopy full SHA for 5132f6d
syntax/cpp.vim
@@ -49,6 +49,11 @@ if !exists("cpp_no_cpp11")
49
syn region cppRawString matchgroup=cppRawStringDelimiter start=+\%(u8\|[uLU]\)\=R"\z([[:alnum:]_{}[\]#<>%:;.?*\+\-/\^&|~!=,"']\{,16}\)(+ end=+)\z1"+ contains=@Spell
50
endif
51
52
+" C++ 14 extensions
53
+if !exists("cpp_no_cpp14")
54
+ syn match cppNumber display "\<0b[01]\+\(u\=l\{0,2}\|ll\=u\)\>"
55
+endif
56
+
57
" The minimum and maximum operators in GNU C++
58
syn match cppMinMax "[<>]?"
59
@@ -72,6 +77,7 @@ if version >= 508 || !exists("did_cpp_syntax_inits")
72
77
HiLink cppConstant Constant
73
78
HiLink cppRawStringDelimiter Delimiter
74
79
HiLink cppRawString String
80
+ HiLink cppNumber Number
75
81
delcommand HiLink
76
82
83
0 commit comments