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?
Asked
Active
Viewed 345 times
3

Illia Danko
- 555
- 4
- 10
-
2`:help w:quickfix_title` – romainl Jul 19 '17 at 15:20
1 Answers
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