[Vim-latex-cvs] vimfiles/ftplugin/latex-suite envmacros.vim,1.9,1.10
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2002-12-06 06:44:06
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv21247 Modified Files: envmacros.vim Log Message: . removed a bug in the definition of the table macro. the caption is now placed below the tabular environment and the \cation{} is no longer \caption{tab:«»}. Index: envmacros.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/envmacros.vim,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** envmacros.vim 20 Nov 2002 10:04:21 -0000 1.9 --- envmacros.vim 6 Dec 2002 06:44:03 -0000 1.10 *************** *** 3,7 **** " Author: Mikolaj Machowski " Created: Tue Apr 23 08:00 PM 2002 PST ! " Last Change: ¶ro lis 20 10:00 2002 C " " Description: mappings/menus for environments. --- 3,7 ---- " Author: Mikolaj Machowski " Created: Tue Apr 23 08:00 PM 2002 PST ! " Last Change: Thu Dec 05 10:00 PM 2002 PST " " Description: mappings/menus for environments. *************** *** 26,30 **** let s:theindex = "\\begin{theindex}{«label»}{«commands»}\<cr>\\item «»\<cr>\\end{theindex}«»" let s:trivlist = "\\begin{trivlist}{«label»}{«commands»}\<cr>\\item «»\<cr>\\end{trivlist}«»" ! let s:table = "\\begin{table}\<cr>\\centering\<cr>\\caption{tab:ä}\<cr>\\begin{tabular}{«dimensions»}\<cr>«»\<cr>\\end{tabular}\<cr>\\label{tab:«label»}\<cr>\\end{table}«»" let s:array = "\\leftä\<cr>\\begin{array}{«dimension»}\<cr>«elements»\<cr>\\end{array}\<cr>\\right«»" let s:description ="\\begin{description}\<cr>\\item[«label»]«»\<cr>\\end{description}«»" --- 26,30 ---- let s:theindex = "\\begin{theindex}{«label»}{«commands»}\<cr>\\item «»\<cr>\\end{theindex}«»" let s:trivlist = "\\begin{trivlist}{«label»}{«commands»}\<cr>\\item «»\<cr>\\end{trivlist}«»" ! let s:table = "\\begin{table}\<cr>\\centering\<cr>\\begin{tabular}{«dimensions»}\<cr>«»\<cr>\\end{tabular}\<cr>\\caption{«Caption text»}\<cr>\\label{tab:«label»}\<cr>\\end{table}«»" let s:array = "\\leftä\<cr>\\begin{array}{«dimension»}\<cr>«elements»\<cr>\\end{array}\<cr>\\right«»" let s:description ="\\begin{description}\<cr>\\item[«label»]«»\<cr>\\end{description}«»" |