3

I have a custom vim script, which navigate through files using setloclist builtin function. How to rename 'Quickfix' title right on the bottom of navigation file list and above command line?

enter image description here

Illia Danko
  • 555
  • 4
  • 10

1 Answers1

3

Either set w:quickfix_title or use setloclist() recent 4th {what} parameter.

You may need to update your vim version.

Luc Hermitte
  • 31,979
  • 7
  • 69
  • 83
  • Thank you. It works. Not needless to mention, that popular `vim-powerline` plugin overwrite any default or custom (like in my case) `location list` or `quickfix list` by own title – Illia Danko Jul 19 '17 at 22:07