blob: 9d438b520dc0f04fc380540797ba7470166e8cc8 [file] [log] [blame]
Bram Moolenaar7fd73202010-07-25 16:58:46 +02001" Vim filetype plugin file
2" Language: Vim's quickfix window
3" Maintainer: Lech Lorens <Lech.Lorens@gmail.com>
Bram Moolenaard58e9292011-02-09 17:07:58 +01004" Last Changed: 18 Dec 2010
Bram Moolenaar7fd73202010-07-25 16:58:46 +02005
6if exists("b:did_ftplugin")
7 finish
8endif
9
10" Don't load another plugin for this buffer
11let b:did_ftplugin = 1
12
Bram Moolenaard58e9292011-02-09 17:07:58 +010013let b:undo_ftplugin = "set stl<"
Bram Moolenaar7fd73202010-07-25 16:58:46 +020014
15" Display the command that produced the list in the quickfix window:
Bram Moolenaard58e9292011-02-09 17:07:58 +010016setlocal stl=%t%{exists('w:quickfix_title')?\ '\ '.w:quickfix_title\ :\ ''}