How do I change the quickix title (status bar) in vim?

Posted by romeovs on Super User See other posts from Super User or by romeovs
Published on 2011-11-13T09:36:48Z Indexed on 2011/11/13 9:56 UTC
Read the original article Hit count: 273

Filed under:

I'm have the following makeprg to compile my tex files in vim:

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

which gives me good results (errors displayed properly, tex compilation shown while busy,...)

Yet there is one thing I'm not pleased off: 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