Re: [Vim-latex-devel] Multiple Compile Won't Run BibTeX
Brought to you by:
srinathava,
tmaas
From: Vaidotas Z. <ze...@gm...> - 2005-03-21 16:26:46
|
Hi, On Kt, 2004-12-16 at 12:59 -0600, Ryan Long wrote: > I apologize if this is a duplicate. I sent this yesterday but never > received a copy, even though I have set up my account to receive my > own messages. > > I checked the archives and could not find the answer to this problem. > I am using gvim on Mac OS 10.3. My target format is PDF. > > When I compile, it will not run Bibtex. The files and my bibtex > installation are not the problem, because if I run it manually > (:!bibtex filename) it works. > > Here are the lines in my texrc: > TexLet g:Tex_MultipleCompileFormats = 'dvi,pdf' > TexLet g:Tex_BibtexFlavor = 'bibtex' > TexLet g:Tex_CompileRule_bib = g:Tex_BibtexFlavor . ' $*' > > Any idea why multiple-compilation is not working? Thank you. It is a long delay, but maybe you are having the same problem as me. Try running command :clist in empty Vim window. If it produces red message E42: No Errors you have the same problem as me. Change function Tex_GetErrorList() in ftplugin/latex-suite/main.vim, by adding these lines: if errlist =~ 'E42: No Errors' let errlist = "" endif The full function source must be like this: function! Tex_GetErrorList() let _a = @a redir @a | silent! clist | redir END let errlist = @a let @a = _a if errlist =~ 'E42: No Errors' let errlist = "" endif return errlist endfunction " }}} Try applying this fix and let me know if it works. Vaidotas Zemlys |