[Vim-latex-cvs] vimfiles/ftplugin/latex-suite texrc,1.31,1.32
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2003-07-24 03:03:56
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv20057 Modified Files: texrc Log Message: Change: Use "\n" instead of the inverted ! character to delimit strings in g:Tex_IgnoredWarnings. (Pan Shizhu). Also a slight improvement in the infile documentation about installation. Index: texrc =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** texrc 16 Jul 2003 05:17:05 -0000 1.31 --- texrc 24 Jul 2003 03:03:51 -0000 1.32 *************** *** 4,7 **** --- 4,8 ---- " Author: Srinath Avadhanula " Created: Mon Apr 01 11:00 AM 2002 PST + " CVS: $Id$ " " Description: This file contains resource configuration information for the *************** *** 12,30 **** " 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. --- 13,28 ---- " of latex-suite. " ! " You can do one of the following: ! " 1. Copy this file into $VIMFILES/ftplugin/latex-suite/tex/texrc ! " and edit the values in that file. ! " $VIMFILES is ~/.vim for UNIX systems and ~/vimfiles for ! " WINDOWS systems. Copying it to some arbitrary location even ! " within some other location in your 'runtimepath' will not ! " work. " ! " 2. Just set values of each setting individually in your ! " $VIMFILES/ftplugin/tex.vim file. (See above for what ! " $VIMFILES is). You will need to use :let instead of :TexLet ! " in this case. " " NOTE: This file is best viewed with Vim-6.0+ with folding turned on. *************** *** 138,148 **** " list of patterns seperated by '¡' TexLet g:Tex_IgnoredWarnings = ! \'Underfull¡'. ! \'Overfull¡'. ! \'specifier changed to¡'. ! \'You have requested¡'. ! \'Missing number, treated as zero.¡'. ! \'There were undefined references¡'. ! \'Citation %.%# undefined¡' " the 'ignore level' of the 'efm'. A value of 4 says that the first 4 kinds of --- 136,146 ---- " list of patterns seperated by '¡' TexLet g:Tex_IgnoredWarnings = ! \'Underfull'."\n". ! \'Overfull'."\n". ! \'specifier changed to'."\n". ! \'You have requested'."\n". ! \'Missing number, treated as zero.'."\n". ! \'There were undefined references'."\n". ! \'Citation %.%# undefined' " the 'ignore level' of the 'efm'. A value of 4 says that the first 4 kinds of |