Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1:/tmp/cvs-serv17625
Modified Files:
Tag: latex-multi-compile
texrc
Log Message:
settings for the 2 new features in compilation (multiple compiling and
format dependency)
Index: texrc
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v
retrieving revision 1.30
retrieving revision 1.30.2.1
diff -C2 -d -r1.30 -r1.30.2.1
*** texrc 30 Jun 2003 01:28:39 -0000 1.30
--- texrc 28 Aug 2003 23:21:30 -0000 1.30.2.1
***************
*** 29,32 ****
--- 29,33 ----
"
" NOTE: This file is best viewed with Vim-6.0+ with folding turned on.
+ " CVS: $Id$
"=============================================================================
***************
*** 74,77 ****
--- 75,85 ----
endif
+ " A comma seperated list of formats which need multiple compilations to be
+ " correctly compiled.
+ TexLet g:Tex_MultipleCompileFormats = 'dvi'
+
+ " Uncomment this line if you compile ps files via dvi files.
+ " TexLet g:Tex_FormatDependency_ps = 'dvi,ps'
+
" ------------------------------------------------------------------------------
" Compiler rules {{{
***************
*** 98,101 ****
--- 106,111 ----
TexLet g:Tex_CompileRule_html = 'latex2html $*.tex'
+
+ TexLet g:Tex_CompileRule_bib = 'bibtex $*'
" }}}
|