Skip to content

Commit d55e84d

Browse files
committed
Bumped version number
1 parent 12e6248 commit d55e84d

File tree

4 files changed

+23
-8
lines changed

4 files changed

+23
-8
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,13 @@ Use your favorite plugin manager or dump the files below in their standard locat
3535

3636
Don't forget to index the documentation with:
3737

38-
:helptags /path/to/vim-qf/doc/
38+
:helptags ~/.vim/doc
39+
40+
on Unix-like systems, or:
41+
42+
:helptags %userprofile%\vimfiles\doc
43+
44+
on Windows.
3945

4046
## TODO
4147

after/ftplugin/qf.vim

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
" qf.vim - Tame the quickfix window
1+
" vim-qf - Tame the quickfix window
22
" Maintainer: romainl <[email protected]>
33
" Version: 0.0.2
44
" License: Vim License (see :help license)
55
" Location: after/ftplugin/qf.vim
66
" Website: https://github.com/romainl/vim-qf
7+
"
8+
" See qf.txt for help. This can be accessed by doing:
9+
"
10+
" :helptags ~/.vim/doc
11+
" :help qf
712

813
let s:save_cpo = &cpo
914
set cpo&vim

autoload/qf.vim

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
" qf.vim - Tame the quickfix window
1+
" vim-qf - Tame the quickfix window
22
" Maintainer: romainl <[email protected]>
3-
" Version: 0.0.1
3+
" Version: 0.0.2
44
" License: Vim License (see :help license)
55
" Location: autoload/qf.vim
66
" Website: https://github.com/romainl/vim-qf
77
"
88
" See qf.txt for help. This can be accessed by doing:
99
"
1010
" :helptags ~/.vim/doc
11-
" :help qf.txt
11+
" :help qf
1212

1313
let s:save_cpo = &cpo
1414
set cpo&vim
1515

16-
" make :cnext/:cprevious and :lnext/:lprevious
1716
" wrap around
1817
function qf#WrapCommand(direction, prefix)
1918
if a:direction == "up"

plugin/qf.vim

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
" qf.vim - Tame the quickfix window
1+
" vim-qf - Tame the quickfix window
22
" Maintainer: romainl <[email protected]>
3-
" Version: 0.0.1
3+
" Version: 0.0.2
44
" License: Vim License (see :help license)
55
" Location: plugin/qf.vim
66
" Website: https://github.com/romainl/vim-qf
7+
"
8+
" See qf.txt for help. This can be accessed by doing:
9+
"
10+
" :helptags ~/.vim/doc
11+
" :help qf
712

813
if exists("g:loaded_qf") || v:version < 703 || &compatible
914
finish

0 commit comments

Comments
 (0)