Merge pull request #278 from Konfekt/master

allow for sending special keys in imaps
This commit is contained in:
Karl Yngve Lervåg 2015-11-19 22:47:32 +01:00
commit 7892c988a5

View File

@ -62,8 +62,8 @@ endfunction
" Wrappers
"
function! s:wrap_math(lhs, rhs) " {{{1
return '<c-r>=<sid>is_math() ? ' . string(a:rhs)
\ . ' : ' . string(a:lhs) . '<cr>'
return '<c-r>=<sid>is_math() ? "' . a:rhs
\ . '" : "' . a:lhs . '"<cr>'
endfunction
" }}}1