[Vim-latex-cvs] vimfiles/ftplugin/latex-suite texrc,1.8,1.9
Brought to you by:
srinathava,
tmaas
From: <ma...@us...> - 2002-11-08 17:37:29
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory usw-pr-cvs1:/tmp/cvs-serv25760 Modified Files: texrc Log Message: I added g:Tex_EscapeChars, used in compiler.vim . Index: texrc =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** texrc 4 Nov 2002 16:32:37 -0000 1.8 --- texrc 8 Nov 2002 17:37:26 -0000 1.9 *************** *** 76,85 **** " values, but if use some other compiler, then you will want to change this. if has('win32') ! let s:CompileFlags = ' --src-specials ' else ! let s:CompileFlags = ' ' endif ! TexLet g:Tex_CompileRule_dvi = 'latex' . s:CompileFlags . ! \ '\nonstopmode \input{$*}' TexLet g:Tex_CompileRule_ps = 'dvips -Ppdf -o $*.ps $*.dvi' --- 76,87 ---- " values, but if use some other compiler, then you will want to change this. if has('win32') ! let s:CompileFlags = '--src-specials' ! TexLet g:Tex_EscapeChars = '' else ! let s:CompileFlags = '' ! TexLet g:Tex_EscapeChars = '{}\' endif ! TexLet g:Tex_CompileRule_dvi = 'latex ' . s:CompileFlags . ! \ ' \nonstopmode \input{$*}' TexLet g:Tex_CompileRule_ps = 'dvips -Ppdf -o $*.ps $*.dvi' *************** *** 93,97 **** " TexLet g:Tex_CompileRule_pdf = 'dvipdf $*.dvi' ! TexLet g:Tex_CompilerRule_html = 'latex2html $*.tex' " }}} --- 95,99 ---- " TexLet g:Tex_CompileRule_pdf = 'dvipdf $*.dvi' ! TexLet g:Tex_CompileRule_html = 'latex2html $*.tex' " }}} |