-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
23 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|