-
-
Notifications
You must be signed in to change notification settings - Fork 448
New issue
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
C/C++ files: sexy comment across //-style commented lines #296
Comments
That's probably a good idea. Anybody want to tackle this? |
Not sure if this option was there from the beginning, but I found out that using |
I see how that option mitigates this problem for your use case, but I think it would be nice if we had a proper fix as well. This probably needs to do some kind of search looking for end-tag conflicts and handle them in the same way that nested comments get re-written as alternative tokens. I'm going to re-open this issue to keep track of it long term and to signal that we're still looking for a proper solution. That way it stays on the radar of things that could use fixing. |
@alerque Maybe it makes sense to create a new label to indicate, that you would accept PRs. Something like „PR wanted” or so. |
Currently, when I try to use the 'sexy' comment style on a piece of code like this
I end up with the following
Which is not working, since
*//
closes the commented section. I was wondering if it's possible to insert a space after each*
in the commented secion, so to avoid the formation of*/
constructs, which for the compiler mean the end of the commented section.The text was updated successfully, but these errors were encountered: