[Vim-latex-cvs] vimfiles/ftplugin/latex-suite texrc,1.10,1.11
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2002-11-17 01:01:52
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory usw-pr-cvs1:/tmp/cvs-serv25753 Modified Files: texrc Log Message: . extended g:Tex_IgnoredWarnings by \'There were undefined references¡'. \'Citation %.%# undefined¡' These are for ignoring undefined citations. The user sets TClevel to 4 when he does want to bother with citations. Document this! Index: texrc =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** texrc 11 Nov 2002 08:54:17 -0000 1.10 --- texrc 17 Nov 2002 01:01:46 -0000 1.11 *************** *** 4,8 **** " Author: Srinath Avadhanula " Created: Mon Apr 01 11:00 AM 2002 PST ! " Last Change: Mon Nov 11 12:00 AM 2002 PST " " Description: This file contains resource configuration information for the --- 4,8 ---- " Author: Srinath Avadhanula " Created: Mon Apr 01 11:00 AM 2002 PST ! " Last Change: Sat Nov 16 05:00 PM 2002 PST " " Description: This file contains resource configuration information for the *************** *** 133,149 **** " This is a handy way of specifying which warnings/errors to ignore. This is a " list of patterns seperated by '¡' ! " NOTE: There is trailing space at the end of the next line. This is ! " necessary!!! ! TexLet g:Tex_IgnoredWarnings = \'Underfull¡'. \'Overfull¡'. \'specifier changed to¡'. \'You have requested¡'. ! \'Missing number, treated as zero.' " the 'ignore level' of the 'efm'. A value of 4 says that the first 4 kinds of " warnings in the list above will be ignored. Use the command TCLevel to set a " level dynamically. ! TexLet g:Tex_IgnoreLevel = 4 " NOTE: The values of g:Tex_Flavor and g:Tex_CompilerFlags are provided as a --- 133,149 ---- " This is a handy way of specifying which warnings/errors to ignore. This is a " 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 " warnings in the list above will be ignored. Use the command TCLevel to set a " level dynamically. ! TexLet g:Tex_IgnoreLevel = 7 " NOTE: The values of g:Tex_Flavor and g:Tex_CompilerFlags are provided as a |