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
Issue noticed on the GCC code base, that uses https://www.gnu.org/prep/standards/html_node/Formatting.html, hence has code formatted as follows:
enum tree_code cp_parser_ptr_operator (cp_parser* parser) { /* some code */ }
The syntax highlighter gets confused by the newline: the scope for the cp_parser_ptr_operator token is meta.enum.c++ instead of meta.function.c++.
cp_parser_ptr_operator
meta.enum.c++
meta.function.c++
I am working on fixing this, and open this ticket for tracking.
The text was updated successfully, but these errors were encountered:
Duplicate of #3938 and #4104
Sorry, something went wrong.
No branches or pull requests
What happened?
Issue noticed on the GCC code base, that uses https://www.gnu.org/prep/standards/html_node/Formatting.html, hence has code formatted as follows:
The syntax highlighter gets confused by the newline: the scope for the
cp_parser_ptr_operator
token ismeta.enum.c++
instead ofmeta.function.c++
.I am working on fixing this, and open this ticket for tracking.
The text was updated successfully, but these errors were encountered: