mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
Add completion for more options to effort
This commit is contained in:
parent
ba5e5989a3
commit
6ba68941e8
|
|
@ -61,7 +61,18 @@ _git_delete_tag(){
|
|||
}
|
||||
|
||||
_git_effort(){
|
||||
__gitcomp "--above"
|
||||
__git_has_doubledash && return
|
||||
|
||||
case "$cur" in
|
||||
--*)
|
||||
__gitcomp "
|
||||
--above
|
||||
$__git_log_common_options
|
||||
$__git_log_shortlog_options
|
||||
"
|
||||
return
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
_git_extras(){
|
||||
|
|
|
|||
Loading…
Reference in a new issue