1" Vim filetype plugin file 2" Language: Vim's quickfix window 3" Maintainer: Lech Lorens <[email protected]> 4" Last Change: 2019 Jul 15 5 6if exists("b:did_ftplugin") 7 finish 8endif 9 10" Don't load another plugin for this buffer 11let b:did_ftplugin = 1 12 13if !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 18endif 19