Skip to content

Commit

Permalink
Bumped version number
Browse files Browse the repository at this point in the history
  • Loading branch information
romainl committed Jul 1, 2015
1 parent 12e6248 commit d55e84d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 6 additions & 1 deletion after/ftplugin/qf.vim
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
" qf.vim - Tame the quickfix window
" vim-qf - Tame the quickfix window
" Maintainer: romainl <[email protected]>
" 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
Expand Down
7 changes: 3 additions & 4 deletions autoload/qf.vim
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
" qf.vim - Tame the quickfix window
" vim-qf - Tame the quickfix window
" Maintainer: romainl <[email protected]>
" 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
"
" 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"
Expand Down
9 changes: 7 additions & 2 deletions plugin/qf.vim
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
" qf.vim - Tame the quickfix window
" vim-qf - Tame the quickfix window
" Maintainer: romainl <[email protected]>
" 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
Expand Down

0 comments on commit d55e84d

Please sign in to comment.