[PATCH] completion: use more proper emulation for zsh
From: Felipe Contreras <hidden>
Date: 2016-06-15 22:53:29
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Felipe Contreras <hidden>
Date: 2016-06-15 22:53:29
Subsystem:
the rest · Maintainer:
Linus Torvalds
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 <redacted> --- 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