We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clang 3.4 supports both: http://clang.llvm.org/cxx_status.html#cxx14
#include <iostream> int main() { int n = 1'000'000; std::cout << n << std::endl; unsigned char c = 0b0100'0000; std::cout << c << std::endl; return 0; }
I'm new to Vim syntax files, but the following seems to work for binary literals:
syn match cNumber display contained "0b[01]\+\(\'[01]\+\)*"
The text was updated successfully, but these errors were encountered:
I added binary literal in #31. Please review it if you can. And as far as I tried, digit separater seems not to be broken in current highlighting.
Sorry, something went wrong.
I noticed that digit separater may break highlight.
int main() { 111'2'333; return 0; }
Here, '2' is highlighted by Character and other parts are highlighted by Number.
'2'
Character
Number
No branches or pull requests
Clang 3.4 supports both:
http://clang.llvm.org/cxx_status.html#cxx14
I'm new to Vim syntax files, but the following seems to work for binary literals:
The text was updated successfully, but these errors were encountered: