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 " Wrappers
" "
function! s:wrap_math(lhs, rhs) " {{{1 function! s:wrap_math(lhs, rhs) " {{{1
return '<c-r>=<sid>is_math() ? ' . string(a:rhs) return '<c-r>=<sid>is_math() ? "' . a:rhs
\ . ' : ' . string(a:lhs) . '<cr>' \ . '" : "' . a:lhs . '"<cr>'
endfunction endfunction
" }}}1 " }}}1