riml icon indicating copy to clipboard operation
riml copied to clipboard

Strings with interpolation don't work with escaped single quotes.

Open dsawardekar opened this issue 10 years ago • 0 comments

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.

dsawardekar avatar Apr 11 '14 19:04 dsawardekar