vscode-kotlin
vscode-kotlin copied to clipboard
Sintax hightlight is broken when use String interpolation

Looks like this is related to #31
Bad syntax highlighting when quote marks are used:
fun format(s: String) = s.replace('"', '_') // fails
Workaround:
fun format(s: String) = s.replace("\"", '_') // OK
Original issue was fixed with the release of #40. The quote mark issue still needs to be addressed. I'm not sure of the rules on this repository but it might be worth making a new issue page for the quote issue.