luke-gru / riml

Riml is a subset of VimL with some nice added features. It compiles to plain VimL.
MIT License
224 stars 6 forks source link

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

Open dsawardekar opened 10 years ago

dsawardekar commented 10 years ago

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.