diff options
author | SZEDER Gábor <szeder@ira.uka.de> | 2011-10-08 03:09:34 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-10-10 10:02:55 -0700 |
commit | e67d71e559724eacb6a799f8be42058da52a8580 (patch) | |
tree | 36e8cb8f38ca32d3cd14fbf5d612cc0d42862da1 /contrib | |
parent | a8f89bfa999dde7fa801ffc29bc89a1f053849e6 (diff) | |
download | git-e67d71e559724eacb6a799f8be42058da52a8580.tar.gz git-e67d71e559724eacb6a799f8be42058da52a8580.tar.xz |
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>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/completion/git-completion.bash | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 4a857b680..5c649c6f4 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -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=*) - __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases) - " "" "${cur##--pretty=}" - return - ;; - --format=*) + --pretty=*|--format=*) __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases) - " "" "${cur##--format=}" + " "" "${cur#*=}" return ;; --*) |