Vim: change the quick fix title

Posted by romeovs on Super User See other posts from Super User or by romeovs
Published on 2011-11-13T01:17:37Z Indexed on 2011/11/13 1:55 UTC
Read the original article Hit count: 606

Filed under:

I'm using following makeprg to get my tex files compiled in vim:

setlocal makeprg=pdflatex\ \-file\-line\-error\ \-shell\-escape\ \-interaction=nonstopmode\ $*\\\|\ tee\ \/dev\/tty\ \\\|\ grep\ \-P\ ':\\d{1,5}:\ '

which yields great results (errors displayed properly, tex compilation shown while busy,...)

Yet, when there are errors and the quickfix window pops up, its status bar is cluttered up with the makeprg string:

pdflatex\ \-file\-line\-error\ \-shell\-escape\ \-interaction=nonstopmode\ $*\\\|\ tee\ \/dev\/tty\ \\\|\ grep\ \-P\ ':\\d{1,5}:\ '

Is there a way of changing the quickfix title/statusbar?

© Super User or respective owner

Related posts about vim