[Vim-latex-cvs] vimfiles/ftplugin/latex-suite envmacros.vim,1.13,1.14
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2002-12-27 23:01:32
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv6341 Modified Files: envmacros.vim Log Message: . changes from the b-newpackages branch Index: envmacros.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/envmacros.vim,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** envmacros.vim 22 Dec 2002 03:00:43 -0000 1.13 --- envmacros.vim 27 Dec 2002 23:01:24 -0000 1.14 *************** *** 3,7 **** " Author: Mikolaj Machowski " Created: Tue Apr 23 08:00 PM 2002 PST ! " Last Change: Thu Dec 19 03:00 AM 2002 PST " " Description: mappings/menus for environments. --- 3,7 ---- " Author: Mikolaj Machowski " Created: Tue Apr 23 08:00 PM 2002 PST ! " Last Change: Tue Dec 24 02:00 AM 2002 PST " " Description: mappings/menus for environments. *************** *** 665,678 **** let l = getline(".") let pack = matchstr(l, '^\s*\zs.*') ! if pack == '' ! let pack = input('Package? ') ! if pack != '' ! return Tex_PutPackage(pack) ! endif ! return 0 ! else ! normal 0D ! return Tex_PutPackage(pack) ! endif endfunction " }}} " Tex_ChangeEnvironments: calls Change() to change the environment {{{ --- 665,670 ---- let l = getline(".") let pack = matchstr(l, '^\s*\zs.*') ! normal! 0"_D ! return Tex_pack_one(pack) endfunction " }}} " Tex_ChangeEnvironments: calls Change() to change the environment {{{ |