It turns out there's no 'bash' emulation in zsh. Anything that starts with a 'b' is mapped to the 'sh' emulation, presumably because of _b_ourne shell. kzh emulation seems closer to bash, and at least I haven't had problems with this. Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- contrib/completion/git-completion.bash | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 31f714d..e75925f 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -2604,8 +2604,7 @@ _git () local i c=1 command __git_dir if [[ -n ${ZSH_VERSION-} ]]; then - emulate -L bash - setopt KSH_TYPESET + emulate -L ksh # workaround zsh's bug that leaves 'words' as a special # variable in versions < 4.3.12 @@ -2664,8 +2663,7 @@ _git () _gitk () { if [[ -n ${ZSH_VERSION-} ]]; then - emulate -L bash - setopt KSH_TYPESET + emulate -L ksh # workaround zsh's bug that leaves 'words' as a special # variable in versions < 4.3.12 -- 1.7.9.6 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html