[Vim-latex-devel] latexsuite ignores settings of Tex_IgnoreWarnings
Brought to you by:
srinathava,
tmaas
|
From: Ingo F. <ma...@in...> - 2013-01-25 20:17:07
|
Dear latex-suite developers and users,
I have been using latex-suite for a relatively long time now and it
generally served me very well. With one exception, though: I have never
really managed to get the compilation to work. That is, I always had to
switch back to the terminal and run
pdflatex nameofytexfile && fg
This works but is not convenient. I finally managed to get rid of the
'Undefined variable: s:target' type of warnings by adding a line to
explicitely reset the target format when opening a tex file:
autocmd FileType tex call Tex_SetTeXCompilerTarget('Compile','pdf')
This seems to do the job, although it doesn't feel like it is supposed
to work like this.
Another an much more annoying point is that I always get stuck in a
quickfix buffer. This is exactly where I would like to go for errors.
But not for every "Overfull \hbox"-Warning. As far as I understand from
the documentation, the variables Tex_IgnoreLevel and Tex_IgnoredWarnings
should cover this issue. Neither leaving them at their default values,
nor setting them explicitely results in any change in behavior. Yet,
explicitely echoing the values of the respective variables shows that
they have values that (in my understanding) should suppress "Overfull
\hbox"-Warnings:
:echo Tex_IgnoreLevel
7
:echo Tex_IgnoredWarnings
Underfull
Overfull
specifier changed to
You have requested
Missing number, treated as zero.
There were undefined references
Citation %.%# undefined
Any suggestions what else I could try to see only those warnings I want
to see?
Thank you very much in advance,
Ingo
|