-
Notifications
You must be signed in to change notification settings - Fork 40
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
Incorrect highlighting of var-strings #26
Comments
Hmm, quite strange that my https://github.com/wg030/jlcode/blob/master/createlists.jl does not recognize this string prefix. I will have to check this out, I guess. |
It's a builtin of the parser, not a real string macro. Otherwise expressions like
couldn't work. Also, it's not really a string -- ideally, it should belong to the same class as identifiers. But thanks for the workaround! |
Ok, I see. |
Definitely like identifiers, I'd say. |
While updating the package I looked at this issue again. |
var"#sprint#339"
In this example, only the part
r"#sprint#339"
is highlighted in red (probably confused with a regex literal). It should cover the wholevar
, though.(See JuliaLang/julia#32408.)
The text was updated successfully, but these errors were encountered: