diff --git a/autoload/vimtex/imaps.vim b/autoload/vimtex/imaps.vim index c2fe7b6..b0296a9 100644 --- a/autoload/vimtex/imaps.vim +++ b/autoload/vimtex/imaps.vim @@ -62,8 +62,8 @@ endfunction " Wrappers " function! s:wrap_math(lhs, rhs) " {{{1 - return '=is_math() ? ' . string(a:rhs) - \ . ' : ' . string(a:lhs) . '' + return '=is_math() ? "' . a:rhs + \ . '" : "' . a:lhs . '"' endfunction " }}}1