I'd like to give the Quick Fix window a different status line than all my other windows.

I want it to have:

set statusline=\ %n\ \ %f%=%L\ lines\ 

When I'm in the quick fix window, I can use :setlocal, but how in my .vimrc can I make it have a different status line?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

This should work

autocmd Filetype qf setlocal statusline=\ %n\ \ %f%=%L\ lines\ 
link|improve this answer
1  
Thanks. I only had to change "set" to "setlocal", and it's just what I wanted. – Ned Batchelder Aug 29 '10 at 11:43
feedback

QuickFix window has filetype qf (see :help filetype), so you can add a line:

setlocal statusline=\ %n\ \ %f%=%L\ lines\

to appropriate qf.vim (see :help ftplugin-overrule).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.