riml
riml copied to clipboard
Strings with interpolation don't work with escaped single quotes.
Given the following Riml,
bar = "one"
foo = "\"#{bar}\""
echo foo
results in the output,
let s:bar = "one"
let s:foo = "\"#{bar}\""
echo s:foo
The bar
variable is present as is. It should result in string concatanation.