Merge pull request #276 from Konfekt/master

imap_mappings: do not swallow leader outside math
This commit is contained in:
Karl Yngve Lervåg 2015-11-12 19:41:33 +01:00
commit 2acf99579b

View File

@ -49,7 +49,7 @@ function! vimtex#imaps#add_map(map) " {{{1
" Apply wrapper
if l:wrapper !=# '' && exists('*' . l:wrapper)
let l:rhs = call(l:wrapper, [l:lhs, l:rhs])
let l:rhs = call(l:wrapper, [l:leader . l:lhs, l:rhs])
endif
" Add mapping
@ -63,7 +63,7 @@ endfunction
"
function! s:wrap_math(lhs, rhs) " {{{1
return '<c-r>=<sid>is_math() ? ' . string(a:rhs)
\ . ' : ' . string(a:lhs) . '<cr>'
\ . ' : ' . string(a:lhs) . '<cr>'
endfunction
" }}}1