From d55e84d8c4650acdcc4f3601576dad1785fee51b Mon Sep 17 00:00:00 2001 From: Romain Lafourcade Date: Thu, 2 Jul 2015 01:10:57 +0200 Subject: [PATCH] Bumped version number --- README.md | 8 +++++++- after/ftplugin/qf.vim | 7 ++++++- autoload/qf.vim | 7 +++---- plugin/qf.vim | 9 +++++++-- 4 files changed, 23 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d3682ff..edd08b4 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,13 @@ Use your favorite plugin manager or dump the files below in their standard locat Don't forget to index the documentation with: - :helptags /path/to/vim-qf/doc/ + :helptags ~/.vim/doc + +on Unix-like systems, or: + + :helptags %userprofile%\vimfiles\doc + +on Windows. ## TODO diff --git a/after/ftplugin/qf.vim b/after/ftplugin/qf.vim index 13d0ae2..b566d71 100644 --- a/after/ftplugin/qf.vim +++ b/after/ftplugin/qf.vim @@ -1,9 +1,14 @@ -" qf.vim - Tame the quickfix window +" vim-qf - Tame the quickfix window " Maintainer: romainl " Version: 0.0.2 " License: Vim License (see :help license) " Location: after/ftplugin/qf.vim " Website: https://github.com/romainl/vim-qf +" +" See qf.txt for help. This can be accessed by doing: +" +" :helptags ~/.vim/doc +" :help qf let s:save_cpo = &cpo set cpo&vim diff --git a/autoload/qf.vim b/autoload/qf.vim index e1732ca..f119c58 100644 --- a/autoload/qf.vim +++ b/autoload/qf.vim @@ -1,6 +1,6 @@ -" qf.vim - Tame the quickfix window +" vim-qf - Tame the quickfix window " Maintainer: romainl -" Version: 0.0.1 +" Version: 0.0.2 " License: Vim License (see :help license) " Location: autoload/qf.vim " Website: https://github.com/romainl/vim-qf @@ -8,12 +8,11 @@ " See qf.txt for help. This can be accessed by doing: " " :helptags ~/.vim/doc -" :help qf.txt +" :help qf let s:save_cpo = &cpo set cpo&vim -" make :cnext/:cprevious and :lnext/:lprevious " wrap around function qf#WrapCommand(direction, prefix) if a:direction == "up" diff --git a/plugin/qf.vim b/plugin/qf.vim index 508d06f..5019aea 100644 --- a/plugin/qf.vim +++ b/plugin/qf.vim @@ -1,9 +1,14 @@ -" qf.vim - Tame the quickfix window +" vim-qf - Tame the quickfix window " Maintainer: romainl -" Version: 0.0.1 +" Version: 0.0.2 " License: Vim License (see :help license) " Location: plugin/qf.vim " Website: https://github.com/romainl/vim-qf +" +" See qf.txt for help. This can be accessed by doing: +" +" :helptags ~/.vim/doc +" :help qf if exists("g:loaded_qf") || v:version < 703 || &compatible finish