[Vim-latex-cvs] vimfiles/ftplugin/latex-suite envmacros.vim,1.2,1.3
Brought to you by:
srinathava,
tmaas
From: <mi...@us...> - 2002-11-04 20:39:46
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory usw-pr-cvs1:/tmp/cvs-serv30213 Modified Files: envmacros.vim Log Message: envmacros.vim: 1. added environments quote i quotation 2. fixed bug with enumeration lists (\\item) Index: envmacros.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/envmacros.vim,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** envmacros.vim 21 May 2002 21:11:03 -0000 1.2 --- envmacros.vim 4 Nov 2002 20:39:43 -0000 1.3 *************** *** 3,7 **** " Author: Mikolaj Machowski " Created: Tue Apr 23 08:00 PM 2002 PST ! " Last Change: czw maj 09 11:00 2002 U " " Description: mappings/menus for environments. --- 3,7 ---- " Author: Mikolaj Machowski " Created: Tue Apr 23 08:00 PM 2002 PST ! " Last Change: pon lis 04 09:00 2002 C " " Description: mappings/menus for environments. *************** *** 41,45 **** let extra = '' if a:submenu =~ 'Lists' ! let extra = '\\item ' endif --- 41,45 ---- let extra = '' if a:submenu =~ 'Lists' ! let extra = '\item ' endif *************** *** 223,226 **** --- 223,228 ---- call s:Tex_EnvMacros('EFL', '&Structure.', 'flushleft') call s:Tex_EnvMacros('EFR', '&Structure.', 'flushright') + call s:Tex_EnvMacros('EQN', '&Structure.', 'quotation') + call s:Tex_EnvMacros('EQE', '&Structure.', 'quote') call s:Tex_EnvMacros('ESB', '&Structure.', 'sloppybar') call s:Tex_EnvMacros('ETI', '&Structure.', 'theindex') |