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
Nested block comments break the highlighting:
I ran
let _: ron::Value = ron::from_str(r#" Something( /* /* test */ */ a: b ) "#).unwrap();
To verify, ron supports nested block comments, and also opened an issue to add them to the grammar specification: ron-rs/ron#439
The text was updated successfully, but these errors were encountered:
Out of curiosity, I create some more unlikely syntax:
# // a comment ! [ enable ( unwrap_newtypes , implicit_some) ] // Line Comment /* block */ /* Block Comment /* Nested Block Comment */ */ ( value : "hello" // comment , something_else /* */: "hi" )
While I don't expect any sensible person to write this, it makes the syntax highlight very much nothing anymore:
Sorry, something went wrong.
No branches or pull requests
Nested block comments break the highlighting:
I ran
To verify, ron supports nested block comments, and also opened an issue to add them to the grammar specification: ron-rs/ron#439
The text was updated successfully, but these errors were encountered: