[Vim-latex-devel] problem with Tex_IgnoredWarnings
Brought to you by:
srinathava,
tmaas
From: Alan S. <ala...@po...> - 2004-02-16 14:13:51
|
Hi, As I get some warnings fairly often, I'm trying to shut them down using=20 the variable Tex_IgnoredWarnings. However for some reason it does not=20 seem to work (using the current cvs version). I want to remove the following warning: /usr/share/texmf/tex/latex/base/fleqn.sty|| LaTeX Warning: inputting `fleqn= =2Eclo' instead of obsolete `fleqn.sty'. I have the following after/ftplugin/tex.vim file: if !exists('g:did_my_tex_stuff') let g:did_my_tex_stuff =3D 1 let g:Tex_IgnoredWarnings =3D "inputting\n" . "Unused global option\n" . = "Marginpar on page\n" . "No \\\\author given.\n" . "LaTeX Font Warning\n" .= g:Tex_IgnoredWarnings let g:Tex_IgnoreLevel =3D g:Tex_IgnoreLevel + 5 endif which seems to be taken into account as asking what Tex_IgnoredWarnings=20 is returns: Tex_IgnoredWarnings inputting^@Unused global option^@Marginpar on=20 page^@No \\author given.^@LaTeX Font=20 Warning^@Underfull^@Overfull^@specifier changed to^@You have=20 requested^@Missing number, treated as zero.^@There were undefined=20 references^@Citation %.%# undefined (sorry for the word wrap) I compile using a Makefile. So my questions are: - What is wrong with my pattern ? - How can I suppress all "inputting ... instead of obsolete ..."=20 messages (I tried using regular expressions, but they did not work. As=20 "inputting" by itself does not work, there might be something else=20 there as well). Thanks for any hint. Alan --=20 The hacker: someone who figured things out and made something cool happen. =2EO. =2E.O OOO |