-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
julia-mode.el: Highlight string interpolation #9025
Comments
Will this extend to arbitrary expressions, or just simple substitutions? |
This seems to require parsing arbitrary expressions. I would say not worth it just for this. |
Some useful notes in this ticket: #164 I'm game to try this unless there are any objections. However, we have bigger string highlighting problems at the moment (triple-quoted strings don't work). A related easy win would be to highlight regexp metacharacters, something like this: This doesn't require any parsing sophistication. Julia's syntax is nice here because |
Moved to JuliaEditorSupport/julia-emacs#3 |
ruby-mode does this, it would be nice to do it in julia-mode too. E.g.
println("hello $user")
should highlight$user
differently.The text was updated successfully, but these errors were encountered: