[Vim-latex-cvs] vimfiles/ftplugin/tex brackets.vim,1.6,1.7
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2002-12-31 09:36:10
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/tex In directory sc8-pr-cvs1:/tmp/cvs-serv27662 Modified Files: brackets.vim Log Message: Bug: <M-c> inserts '\label{<++>}<++>' literally without using IMAP_PutTextWithMovement('\label{<++>}<++>'). Index: brackets.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/tex/brackets.vim,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** brackets.vim 22 Dec 2002 03:01:08 -0000 1.6 --- brackets.vim 31 Dec 2002 09:36:06 -0000 1.7 *************** *** 2,6 **** " Author: Carl Mueller " (incorporated into latex-suite by Srinath Avadhanula) ! " Last Change: Thu Dec 19 03:00 AM 2002 PST " Description: " This ftplugin provides the following maps: --- 2,6 ---- " Author: Carl Mueller " (incorporated into latex-suite by Srinath Avadhanula) ! " Last Change: Sun Dec 29 11:00 PM 2002 PST " Description: " This ftplugin provides the following maps: *************** *** 127,131 **** return "\<BS>".IMAP_PutTextWithMovement('\lefteqn{<++>}<++>') else ! return '\label{<++>}<++>' endif endfunction " }}} --- 127,131 ---- return "\<BS>".IMAP_PutTextWithMovement('\lefteqn{<++>}<++>') else ! return IMAP_PutTextWithMovement('\label{<++>}<++>') endif endfunction " }}} |