Vim: change the quick fix title
- by romeovs
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?