diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-05-01 21:14:34 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-05-01 21:14:34 +0200 |
commit | 8071607aa5e6f4decd2c3ba0a41cf2b3498b6f1e (patch) | |
tree | b89b0ce21c32df983ad6b857b3ac55188a0f58ed /runtime/ftplugin | |
parent | 2d0b92f8f9f765f2707a98a3493903f895c87c7f (diff) | |
download | vim-git-8071607aa5e6f4decd2c3ba0a41cf2b3498b6f1e.tar.gz |
More runtime file fixes for 'compatible' mode.
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/qf.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/ftplugin/qf.vim b/runtime/ftplugin/qf.vim index 9d438b520..98c8f932b 100644 --- a/runtime/ftplugin/qf.vim +++ b/runtime/ftplugin/qf.vim @@ -1,7 +1,7 @@ " Vim filetype plugin file " Language: Vim's quickfix window " Maintainer: Lech Lorens <Lech.Lorens@gmail.com> -" Last Changed: 18 Dec 2010 +" Last Changed: 30 Apr 2012 if exists("b:did_ftplugin") finish @@ -13,4 +13,4 @@ let b:did_ftplugin = 1 let b:undo_ftplugin = "set stl<" " Display the command that produced the list in the quickfix window: -setlocal stl=%t%{exists('w:quickfix_title')?\ '\ '.w:quickfix_title\ :\ ''} +setlocal stl=%t%{exists('w:quickfix_title')?\ '\ '.w:quickfix_title\ :\ ''}\ %=%-15(%l,%c%V%)\ %P |