qf.vim 508 B

12345678910111213141516171819
  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. if exists("b:did_ftplugin")
  6. finish
  7. endif
  8. " Don't load another plugin for this buffer
  9. let b:did_ftplugin = 1
  10. if !get(g:, 'qf_disable_statusline')
  11. let b:undo_ftplugin = "set stl<"
  12. " Display the command that produced the list in the quickfix window:
  13. setlocal stl=%t%{exists('w:quickfix_title')?\ '\ '.w:quickfix_title\ :\ ''}\ %=%-15(%l,%c%V%)\ %P
  14. endif