Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1:/tmp/cvs-serv22397
Modified Files:
texrc
Log Message:
1. I changed the installation instructions: the user's texrc file should be
put in .../ftplugin/tex/ and it will be :source'd automatically.
TODO: All this belongs in a help file, not in the comments.
2. I changed the default for s:CompileFlags back to '' for non-win32 systems.
My brand-new RH 8.0 system, with the current (non-beta!) version of teTeX does
not support --src-specials and this leads to a silent failure of \ll :-(
Index: texrc
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** texrc 6 Dec 2002 09:36:54 -0000 1.14
--- texrc 13 Dec 2002 14:47:29 -0000 1.15
***************
*** 4,29 ****
" Author: Srinath Avadhanula
" Created: Mon Apr 01 11:00 AM 2002 PST
! " Last Change: Fri Dec 06 01:00 AM 2002 PST
"
" Description: This file contains resource configuration information for the
" latex-suite package.
"
! " NOTE: This file should NOT be edited directly. The recommended usage
! " is to make a copy somewhere, edit that copy and then source
! " that copy in your ftplugin/tex.vim file.
! "
! " This is because this file will be over-written each time you
! " install a new copy of latex-suite.
"
" Installation: This file should normally reside as:
" $HOME/vimfiles/ftplugin/latex-suite/texrc (WINDOWS)
" or
! " $HOME/.vim/ftplugin/tex/latex-suite/texrc (UNIX)
! "
! " Copy it over somewhere and then put
"
! " source /path/to/copy/of/texrc
"
! " in your ~/.vim/ftplugin/tex.vim file.
"
" NOTE: This file is best viewed with Vim-6.0+ with folding turned on.
--- 4,31 ----
" Author: Srinath Avadhanula
" Created: Mon Apr 01 11:00 AM 2002 PST
! " Last Change: Fri Dec 13 09:00 AM 2002 EST
"
" Description: This file contains resource configuration information for the
" latex-suite package.
"
! " NOTE: Do NOT be edit this file directly:
! " this file will be over-written each time you install a new copy
! " of latex-suite.
"
" Installation: This file should normally reside as:
" $HOME/vimfiles/ftplugin/latex-suite/texrc (WINDOWS)
" or
! " $HOME/.vim/ftplugin/latex-suite/texrc (UNIX)
"
! " Make your local copy as:
! " $HOME/vimfiles/ftplugin/tex/texrc (WINDOWS)
! " or
! " $HOME/.vim/ftplugin/tex/texrc (UNIX)
"
! " It will be :source'd automatically when you edit a LaTeX file.
! " You can edit your local copy with the command
! " :Ttexrc
! " or with the menu item
! " TeX-Suite/Edit texrc
"
" NOTE: This file is best viewed with Vim-6.0+ with folding turned on.
***************
*** 83,87 ****
TexLet g:Tex_EscapeChars = ''
else
! let s:CompileFlags = '--src-specials'
TexLet g:Tex_EscapeChars = '{}\'
endif
--- 85,89 ----
TexLet g:Tex_EscapeChars = ''
else
! let s:CompileFlags = ''
TexLet g:Tex_EscapeChars = '{}\'
endif
|