qf.vim (508B)
1 " Vim filetype plugin file 2 " Language: Vim's quickfix window 3 " Maintainer: Lech Lorens <Lech.Lorens@gmail.com> 4 " Last Change: 2019 Jul 15 5 6 if exists("b:did_ftplugin") 7 finish 8 endif 9 10 " Don't load another plugin for this buffer 11 let b:did_ftplugin = 1 12 13 if !get(g:, 'qf_disable_statusline') 14 let b:undo_ftplugin = "set stl<" 15 16 " Display the command that produced the list in the quickfix window: 17 setlocal stl=%t%{exists('w:quickfix_title')?\ '\ '.w:quickfix_title\ :\ ''}\ %=%-15(%l,%c%V%)\ %P 18 endif