completion: unite --format and --pretty for 'log' and 'show'
Signed-off-by: SZEDER Gábor <szeder@ira.uka.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
a8f89bfa99
commit
e67d71e559
@ -1604,14 +1604,9 @@ _git_log ()
|
||||
local cur
|
||||
_get_comp_words_by_ref -n =: cur
|
||||
case "$cur" in
|
||||
--pretty=*)
|
||||
--pretty=*|--format=*)
|
||||
__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
|
||||
" "" "${cur##--pretty=}"
|
||||
return
|
||||
;;
|
||||
--format=*)
|
||||
__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
|
||||
" "" "${cur##--format=}"
|
||||
" "" "${cur#*=}"
|
||||
return
|
||||
;;
|
||||
--date=*)
|
||||
@ -2456,14 +2451,9 @@ _git_show ()
|
||||
local cur
|
||||
_get_comp_words_by_ref -n =: cur
|
||||
case "$cur" in
|
||||
--pretty=*)
|
||||
--pretty=*|--format=*)
|
||||
__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
|
||||
" "" "${cur##--pretty=}"
|
||||
return
|
||||
;;
|
||||
--format=*)
|
||||
__gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases)
|
||||
" "" "${cur##--format=}"
|
||||
" "" "${cur#*=}"
|
||||
return
|
||||
;;
|
||||
--*)
|
||||
|
Loading…
Reference in New Issue
Block a user