Highlight string interpolation
Ref https://github.com/JuliaLang/julia/issues/9025
ruby-mode does this, it would be nice to do it in julia-mode too. E.g.
println("hello $user")should highlight$userdifferently.
Also https://github.com/JuliaLang/julia/issues/9025#issuecomment-63487240
This seems to require parsing arbitrary expressions. I would say not worth it just for this.
I'm really for at least a simple variant of this. As long $ is not "escaping", it can be really confusing:

This actually prints the literal string , expr.head, ( (what I intended was of course $(...something...)().
why not check how vscode do that ? it highlight string interpolation
I think VS Code uses tree sitter. That's what we aim to do here too (cf #174 for progress).
so how is the progress ?
Try it out at https://github.com/ronisbr/julia-ts-mode.
I have been trying julia-ts-mode out. This works.