Re: [Vim-latex-devel] show warnings after compiling
Brought to you by:
srinathava,
tmaas
From: Alessandro P. <ale...@la...> - 2013-01-17 19:12:13
|
2013/1/17 Alessandro Pezzoni <ale...@la...>: > 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. Sorry for double-posting, but I forgot to say that to use a different compiler is easy as changing a vim variable, e.g. for dvi or pdf output: let g:Tex_CompileRule_dvi = "rubber -s $*" let g:Tex_CompileRule_pdf = "rubber -s --pdf $*" The '-s' option is there to tell it to display one error message per line. Alessandro |