Add completion for more options to effort

This commit is contained in:
Nicolai Skogheim 2015-07-24 17:51:33 +02:00
parent ba5e5989a3
commit 6ba68941e8

View file

@ -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(){