Re: [Vim-latex-devel] show warnings after compiling
Brought to you by:
srinathava,
tmaas
From: Alessandro P. <ale...@la...> - 2013-01-17 19:08:26
|
> On 01/17/2013 12:41 PM, Andreas Groh wrote: >> Hello, >> >> thanks for your reply. I also have let g:Tex_IgnoreLevel=0 in my >> .vimrc. As far as I understood the TCLevel command is just a short cut >> for let g:Tex_IgnoreLevel=x to be used from within vim. However, the >> warnings are not shown. In my case the warnings are mainly due to >> undefined citations. >> >> Meanwhile I started working on another latex project without undefined >> citations. In this case the warnings for underfull boxes etc. are >> shown. That is strange. If I include an undefined citation the >> corresponding warning is also not shown. >> >> Why is that? Are the warnings for undefined citations treated in a >> different way? Well, I'm not sure about why the warnings for one of your projects get displayed and those for the other do not, but vim's quickfix mode is known to not play nicely with with latex, since it is unable to parse multi-linear error messages (or warnings). You could try using something like 'rubber' [1], which is a latex wrapper that is able to "sanitize" error and warning messages for vim, i.e. that can print them on a single line. This should also fix the annoying issue of vim opening an .aux file upon compilation errors. Cheers, Alessandro [1] https://launchpad.net/rubber/ |