diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2020-10-28 03:07:04 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-10-28 22:30:59 +0100 |
commit | 9a397ea5ad59e64ff6eebfd1d7dad43aac790e0a (patch) | |
tree | 751d421c9133cdf639c35d7112282e850f6b0fd1 /contrib/completion/git-completion.zsh | |
parent | completion: zsh: shuffle functions around (diff) | |
download | git-9a397ea5ad59e64ff6eebfd1d7dad43aac790e0a.tar.xz git-9a397ea5ad59e64ff6eebfd1d7dad43aac790e0a.zip |
completion: zsh: refactor command completion
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion/git-completion.zsh')
-rw-r--r-- | contrib/completion/git-completion.zsh | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/contrib/completion/git-completion.zsh b/contrib/completion/git-completion.zsh index 60efddb4a9..858864f3fb 100644 --- a/contrib/completion/git-completion.zsh +++ b/contrib/completion/git-completion.zsh @@ -134,20 +134,32 @@ __gitcomp_file_direct () __gitcomp_file "$1" "" } +__git_complete_command () +{ + emulate -L zsh + + local command="$1" + local completion_func="_git_${command//-/_}" + if (( $+functions[$completion_func] )); then + emulate ksh -c $completion_func + return 0 + else + return 1 + fi +} + __git_zsh_bash_func () { emulate -L ksh local command=$1 - local completion_func="_git_${command//-/_}" - declare -f $completion_func >/dev/null && $completion_func && return + __git_complete_command "$command" && return local expansion=$(__git_aliased_command "$command") if [ -n "$expansion" ]; then words[1]=$expansion - completion_func="_git_${expansion//-/_}" - declare -f $completion_func >/dev/null && $completion_func + __git_complete_command "$expansion" fi } |