[Vim-latex-cvs] vimfiles/ftplugin/latex-suite texrc,1.33,1.34
Brought to you by:
srinathava,
tmaas
|
From: <sri...@us...> - 2003-08-29 02:55:52
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1:/tmp/cvs-serv15708
Modified Files:
texrc
Log Message:
commit from the latex-multi-compile branch.
Index: texrc
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** texrc 26 Jul 2003 19:10:10 -0000 1.33
--- texrc 29 Aug 2003 02:55:48 -0000 1.34
***************
*** 25,28 ****
--- 25,29 ----
"
" NOTE: This file is best viewed with Vim-6.0+ with folding turned on.
+ " CVS: $Id$
"=============================================================================
***************
*** 57,60 ****
--- 58,74 ----
" ==============================================================================
+ " General settings {{{
+
+ TexLet g:Tex_UsePython = 1
+
+ " the system command which pulls in a file.
+ if &shell =~ 'sh'
+ TexLet g:Tex_CatCmd = 'cat'
+ else
+ TexLet g:Tex_CatCmd = 'type'
+ endif
+
+ " }}}
+ " ==============================================================================
" Rules: specifications of programs for compiling and viewing {{{
"
***************
*** 70,73 ****
--- 84,94 ----
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 {{{
***************
*** 77,84 ****
" but it is known that it can sometimes give different results in the output,
" so use it with care.
! let s:CompileFlags = ''
TexLet g:Tex_EscapeChars = '{}\'
- TexLet g:Tex_CompileRule_dvi = 'latex ' . s:CompileFlags .
- \ ' -interaction=nonstopmode $*'
TexLet g:Tex_CompileRule_ps = 'dvips -Ppdf -o $*.ps $*.dvi'
--- 98,103 ----
" but it is known that it can sometimes give different results in the output,
" so use it with care.
! TexLet g:Tex_CompileRule_dvi = 'latex -interaction=nonstopmode $*'
TexLet g:Tex_EscapeChars = '{}\'
TexLet g:Tex_CompileRule_ps = 'dvips -Ppdf -o $*.ps $*.dvi'
***************
*** 94,97 ****
--- 113,118 ----
TexLet g:Tex_CompileRule_html = 'latex2html $*.tex'
+
+ TexLet g:Tex_CompileRule_bib = 'bibtex $*'
" }}}
|