[Vim-latex-cvs] vimfiles/ftplugin/latex-suite texrc,1.42,1.43
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2004-05-22 01:25:42
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2519 Modified Files: texrc Log Message: New: Factory defaults for a few more variables which were introduced recently. Index: texrc =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** texrc 25 Jan 2004 21:49:00 -0000 1.42 --- texrc 22 May 2004 01:25:23 -0000 1.43 *************** *** 71,74 **** --- 71,79 ---- endif + " whether to turn on debugging + TexLet g:Tex_Debug = 0 + " If non empty, all the debugging information will be written to a file of + " this name. + TexLet g:Tex_DebugLog = '' " }}} *************** *** 204,207 **** --- 209,220 ---- " }}} " ============================================================================== + " Project: how to deal with multi file projects via latex-suite {{{ + + " Use a valid vim expression here if you want to customize the way latex-suite + " searches for a master file from within another file. + TexLet g:Tex_MainFileExpression = '' + + " }}} + " ============================================================================== " Macros: latex-suite comes with a large number of macros to speed up typing {{{ " latex. *************** *** 508,511 **** --- 521,531 ---- TexLet g:Tex_TEXINPUTS = '' + " Whether latex-suite simply searches for \\label's in all the .tex file found + " in the current directory or whether it will use a more complex algorithm. + " See + " :help Tex_UseSimpleLabelSearch + " for more information + TexLet g:Tex_UseSimpleLabelSearch = 0 + " }}} " ============================================================================== |