Update of /cvsroot/vim-latex/vimfiles/plugin
In directory sc8-pr-cvs1:/tmp/cvs-serv3970
Modified Files:
imaps.vim
Log Message:
Bug: call IMAP('""', '"<++>"<++>', '<+', '+>') doesnt work.
In general, any mapping ending in double quote doesn't work.
Cause: Double quotes need to be escaped in the call to LookupCharacter().
Index: imaps.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/plugin/imaps.vim,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** imaps.vim 3 Jan 2003 08:22:23 -0000 1.18
--- imaps.vim 3 Jan 2003 08:42:16 -0000 1.19
***************
*** 182,186 ****
\ escape(lastLHSChar, '|')
\ '<C-r>=<SID>LookupCharacter("' .
! \ escape(lastLHSChar, '\|') .
\ '")<CR>'
endfunction
--- 182,186 ----
\ escape(lastLHSChar, '|')
\ '<C-r>=<SID>LookupCharacter("' .
! \ escape(lastLHSChar, '\|"') .
\ '")<CR>'
endfunction
|