From: <mi...@us...> - 2003-10-03 10:35:35
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv11214 Modified Files: multicompile.vim texrc Log Message: Big BibTeX databases and some packages supporting BibTeX need bibtex8 or switches. Use new g:Tex_BibtexFlavor variable, default of course just bibtex Index: multicompile.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/multicompile.vim,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** multicompile.vim 3 Sep 2003 07:19:13 -0000 1.7 --- multicompile.vim 3 Oct 2003 10:35:28 -0000 1.8 *************** *** 1,4 **** " ============================================================================ ! " File: latexm.vim " Author: Srinath Avadhanula " Created: Sat Jul 05 03:00 PM 2003 --- 1,4 ---- " ============================================================================ ! " File: multicompile.vim " Author: Srinath Avadhanula " Created: Sat Jul 05 03:00 PM 2003 *************** *** 78,83 **** let biblinesBefore = Tex_CatFile(bibFileName) ! echomsg "Running bibtex..." ! let temp_mp = &mp | let &mp='bibtex' exec 'silent! make '.mainFileName_root let &mp = temp_mp --- 78,83 ---- let biblinesBefore = Tex_CatFile(bibFileName) ! echomsg "Running '" . g:Tex_BibtexFlavor . "' ..." ! let temp_mp = &mp | let &mp = g:Tex_BibtexFlavor exec 'silent! make '.mainFileName_root let &mp = temp_mp Index: texrc =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** texrc 3 Oct 2003 07:43:24 -0000 1.39 --- texrc 3 Oct 2003 10:35:28 -0000 1.40 *************** *** 114,118 **** TexLet g:Tex_CompileRule_html = 'latex2html $*.tex' ! TexLet g:Tex_CompileRule_bib = 'bibtex $*' " Set Tex_UseMakefile to 0 if you want to ignore the presence of a Makefile --- 114,118 ---- TexLet g:Tex_CompileRule_html = 'latex2html $*.tex' ! TexLet g:Tex_CompileRule_bib = g:Tex_BibtexFlavor . ' $*' " Set Tex_UseMakefile to 0 if you want to ignore the presence of a Makefile *************** *** 179,182 **** --- 179,185 ---- " specifies the current latex flavor. TexLet g:Tex_Flavor = 'latex' + + " specifies the BibTeX flavor and if necessary options. + TexLet g:Tex_BibtexFlavor = 'bibtex' " By default the program described by g:Tex_Flavor above is called with the |