From: Felipe Contreras Date: Wed, 28 Oct 2020 02:06:57 +0000 (-0600) Subject: completion: zsh: fix splitting of words X-Git-Tag: v2.30.0-rc0~105^2~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=94b2901cfe;p=thirdparty%2Fgit.git completion: zsh: fix splitting of words Files don't need to be split by '=:', words do. Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- diff --git a/contrib/completion/git-completion.zsh b/contrib/completion/git-completion.zsh index c5b875993f..d9ce5e1742 100644 --- a/contrib/completion/git-completion.zsh +++ b/contrib/completion/git-completion.zsh @@ -124,6 +124,7 @@ __gitcomp_nl_append () emulate -L zsh local IFS=$'\n' + compset -P '*[=:]' compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0 } @@ -132,7 +133,6 @@ __gitcomp_file_direct () emulate -L zsh local IFS=$'\n' - compset -P '*[=:]' compadd -f -- ${=1} && _ret=0 } @@ -141,7 +141,6 @@ __gitcomp_file () emulate -L zsh local IFS=$'\n' - compset -P '*[=:]' compadd -p "${2-}" -f -- ${=1} && _ret=0 }