[Vim-latex-cvs] vimfiles/ftplugin/latex-suite texrc,1.28,1.29
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2003-06-18 01:03:45
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv22000 Modified Files: texrc Log Message: In the viewer rules for windows, do not use full paths. Ask the user to set the $PATH variable to include the directories containing the programs. This is more portable than before. Set default value for g:Tex_RememberCiteSearch, Tex_BIBINPUTS and Tex_TEXINPUTS Index: texrc =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** texrc 15 Jun 2003 08:42:11 -0000 1.28 --- texrc 18 Jun 2003 01:03:42 -0000 1.29 *************** *** 106,116 **** " when calling them. The viewer therefore cannot accept arguments after " the filename. ! " Important for Windows users: ! " you should adapt the absolute path for gsview32 and AcroRd32 calls; ! " below you can find some standard locations of those programs. ! " Tex_ViewRule_dvi value can be set to 'yap -1' or 'windvi'. if has('win32') ! TexLet g:Tex_ViewRule_ps = 'C:\Ghostgum\gsview\gsview32' ! TexLet g:Tex_ViewRule_pdf = 'C:\Progra~1\Adobe\Acroba~1.0\Reader\AcroRd32' TexLet g:Tex_ViewRule_dvi = 'yap -1' elseif has('macunix') --- 106,114 ---- " when calling them. The viewer therefore cannot accept arguments after " the filename. ! " NOTE: Windows users: ! " Set your $PATH variable to include the full path to these programs. if has('win32') ! TexLet g:Tex_ViewRule_ps = 'gsview32' ! TexLet g:Tex_ViewRule_pdf = 'AcroRd32' TexLet g:Tex_ViewRule_dvi = 'yap -1' elseif has('macunix') *************** *** 416,419 **** --- 414,420 ---- " }}} + + " }}} + " ============================================================================== " TeX Completion: {{{ " *************** *** 435,439 **** TexLet g:Tex_ImageDir = '' ! " }}} " }}} --- 436,444 ---- TexLet g:Tex_ImageDir = '' ! " whether or not searches for \cite's are cached. ! TexLet g:Tex_RememberCiteSearch = 1 ! " Paths to the bibliography files and custom packages. ! TexLet g:Tex_BIBINPUTS = '' ! TexLet g:Tex_TEXINPUTS = '' " }}} *************** *** 506,519 **** " by g:Tex_Folding), so you can do <F6> or \rf to refresh/create folds. TexLet g:Tex_AutoFolding = 1 - - " }}} - " ============================================================================== - " TEXINPUTS: check this directories for user packages {{{ - " Search some directories for user packages. They can contain, \usepackage, - " \newcommand etc. commands. LaTeX uses $TEXINPUTS variable. Because relations - " between Vim and shell aren't straightforward copy it here. Use exact syntax. - " Example g:Tex_TEXINPUTS = '.:~/texmf//:'. More in |latex-package-scanning|. - " Default: '' - TexLet g:Tex_TEXINPUTS = '' " }}} --- 511,514 ---- |