* [PATCH] git-completion.zsh: do not clobber complete()
@ 2014-02-14 21:24 Mark Lodato
2014-04-30 5:58 ` Felipe Contreras
0 siblings, 1 reply; 3+ messages in thread
From: Mark Lodato @ 2014-02-14 21:24 UTC (permalink / raw)
To: git; +Cc: Mark Lodato, Felipe Contreras
Previously, git-completion.zsh redefined complete() to make __git_complete()
a no-op. This broke zsh's built-in bash completion compatibility layer
(bashcompinit), which defines its own complete().
Sadly, since there is no way in zsh to restore the original defintion of
complete() after bash-completion.bash is sourced, we must pass in a flag to
git-completion.bash to change its behavior.
Signed-off-by: Mark Lodato <lodato@google.com>
---
contrib/completion/git-completion.bash | 1 +
contrib/completion/git-completion.zsh | 8 +-------
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 9525343..36aa8bb 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -2650,6 +2650,7 @@ __git_func_wrap ()
# This is NOT a public function; use at your own risk.
__git_complete ()
{
+ [[ -n $GIT_DO_NOT_CALL_COMPLETE ]] && return
local wrapper="__git_wrap${2}"
eval "$wrapper () { __git_func_wrap $2 ; }"
complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
diff --git a/contrib/completion/git-completion.zsh b/contrib/completion/git-completion.zsh
index 6b77968..9f68d63 100644
--- a/contrib/completion/git-completion.zsh
+++ b/contrib/completion/git-completion.zsh
@@ -16,12 +16,6 @@
#
# fpath=(~/.zsh $fpath)
-complete ()
-{
- # do nothing
- return 0
-}
-
zstyle -T ':completion:*:*:git:*' tag-order && \
zstyle ':completion:*:*:git:*' tag-order 'common-commands'
@@ -39,7 +33,7 @@ if [ -z "$script" ]; then
test -f $e && script="$e" && break
done
fi
-ZSH_VERSION='' . "$script"
+GIT_DO_NOT_CALL_COMPLETE=1 ZSH_VERSION='' . "$script"
__gitcomp ()
{
--
1.9.0.rc1.175.g0b1dcb5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* RE: [PATCH] git-completion.zsh: do not clobber complete()
2014-02-14 21:24 [PATCH] git-completion.zsh: do not clobber complete() Mark Lodato
@ 2014-04-30 5:58 ` Felipe Contreras
2014-04-30 10:02 ` Felipe Contreras
0 siblings, 1 reply; 3+ messages in thread
From: Felipe Contreras @ 2014-04-30 5:58 UTC (permalink / raw)
To: Mark Lodato, git; +Cc: Mark Lodato, Felipe Contreras
Mark Lodato wrote:
> Previously, git-completion.zsh redefined complete() to make
> __git_complete() a no-op. This broke zsh's built-in bash completion
> compatibility layer (bashcompinit), which defines its own complete().
How exactly? I'm testing this and I don't see any problems. I run
'type -f _complete' and I get bashcompinit's complete, and the internal
_complete() function is used only by the _git completion.
How have you configured this completion? Are you using the recommended
instructions?
--
Felipe Contreras
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] git-completion.zsh: do not clobber complete()
2014-04-30 5:58 ` Felipe Contreras
@ 2014-04-30 10:02 ` Felipe Contreras
0 siblings, 0 replies; 3+ messages in thread
From: Felipe Contreras @ 2014-04-30 10:02 UTC (permalink / raw)
To: Felipe Contreras, Mark Lodato, git; +Cc: Mark Lodato, Felipe Contreras
Felipe Contreras wrote:
> Mark Lodato wrote:
> > Previously, git-completion.zsh redefined complete() to make
> > __git_complete() a no-op. This broke zsh's built-in bash completion
> > compatibility layer (bashcompinit), which defines its own complete().
>
> How exactly? I'm testing this and I don't see any problems. I run
> 'type -f _complete' and I get bashcompinit's complete, and the internal
> _complete() function is used only by the _git completion.
Ah, it's complete(), not _complete(). I see the problem and I'll propose
a similar patch.
--
Felipe Contreras
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-04-30 10:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-14 21:24 [PATCH] git-completion.zsh: do not clobber complete() Mark Lodato
2014-04-30 5:58 ` Felipe Contreras
2014-04-30 10:02 ` Felipe Contreras
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).