RE: [PATCH] git-completion.zsh: do not clobber complete()

2014-04-30 Thread 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

RE: [PATCH] git-completion.zsh: do not clobber complete()

2014-04-29 Thread 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

[PATCH] git-completion.zsh: do not clobber complete()

2014-02-14 Thread Mark Lodato
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-compl