Merge pull request #603 from kballard/part_condition_special_char

Handle special characters in part conditions
This commit is contained in:
Bailey Ling
2014-09-22 22:36:04 -04:00

View File

@@ -49,7 +49,7 @@ function! s:create(parts, append)
endif
if exists('part.condition')
let partval = substitute(partval, '{', '{'.(part.condition).' ? ', '')
let partval = substitute(partval, '{', '\="{".(part.condition)." ? "', '')
let partval = substitute(partval, '}', ' : ""}', '')
endif