File tree Expand file tree Collapse file tree 4 files changed +23
-8
lines changed Expand file tree Collapse file tree 4 files changed +23
-8
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,13 @@ Use your favorite plugin manager or dump the files below in their standard locat
35
35
36
36
Don't forget to index the documentation with:
37
37
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.
39
45
40
46
## TODO
41
47
Original file line number Diff line number Diff line change 1
- " qf. vim - Tame the quickfix window
1
+ " vim-qf - Tame the quickfix window
2
2
" Maintainer: romainl <[email protected] >
3
3
" Version: 0.0.2
4
4
" License: Vim License (see :help license)
5
5
" Location: after/ftplugin/qf.vim
6
6
" 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
7
12
8
13
let s: save_cpo = &cpo
9
14
set cpo &vim
Original file line number Diff line number Diff line change 1
- " qf. vim - Tame the quickfix window
1
+ " vim-qf - Tame the quickfix window
2
2
" Maintainer: romainl <[email protected] >
3
- " Version: 0.0.1
3
+ " Version: 0.0.2
4
4
" License: Vim License (see :help license)
5
5
" Location: autoload/qf.vim
6
6
" Website: https://github.com/romainl/vim-qf
7
7
"
8
8
" See qf.txt for help. This can be accessed by doing:
9
9
"
10
10
" :helptags ~/.vim/doc
11
- " :help qf.txt
11
+ " :help qf
12
12
13
13
let s: save_cpo = &cpo
14
14
set cpo &vim
15
15
16
- " make :cnext/:cprevious and :lnext/:lprevious
17
16
" wrap around
18
17
function qf#WrapCommand (direction, prefix)
19
18
if a: direction == " up"
Original file line number Diff line number Diff line change 1
- " qf. vim - Tame the quickfix window
1
+ " vim-qf - Tame the quickfix window
2
2
" Maintainer: romainl <[email protected] >
3
- " Version: 0.0.1
3
+ " Version: 0.0.2
4
4
" License: Vim License (see :help license)
5
5
" Location: plugin/qf.vim
6
6
" 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
7
12
8
13
if exists (" g:loaded_qf" ) || v: version < 703 || &compatible
9
14
finish
You can’t perform that action at this time.
0 commit comments