about summary refs log tree commit diff
path: root/Completion/Unix/Command/_git
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2016-08-22 11:54:04 +0200
committerOliver Kiddle <opk@zsh.org>2016-08-22 11:54:04 +0200
commit18aa25c75d84b86be15a934554d3c829926a4066 (patch)
tree52db66868e1d147ed35ac59720cfb2f37498f20f /Completion/Unix/Command/_git
parentc8b228b1ea99d6c9d893b72b2fe05eaf4a16a10f (diff)
downloadzsh-18aa25c75d84b86be15a934554d3c829926a4066.tar.gz
zsh-18aa25c75d84b86be15a934554d3c829926a4066.tar.xz
zsh-18aa25c75d84b86be15a934554d3c829926a4066.zip
unposted (c.f. Mikael: 39078): fix for git blame terms
Diffstat (limited to 'Completion/Unix/Command/_git')
-rw-r--r--Completion/Unix/Command/_git6
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index 4a7c9b4ca..304d6eb59 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -194,8 +194,8 @@ _git-bisect () {
   declare -A opt_args
   local good bad
 
-  if good=$(_call_program commands git terms --term-good); then
-    bad=$(_call_program commands git terms --term-bad)
+  if good=$(_call_program commands git bisect terms --term-good); then
+    bad=$(_call_program commands git bisect terms --term-bad)
   else
     good=( good old ) bad=( new bad )
   fi
@@ -249,7 +249,7 @@ _git-bisect () {
               ;;
           esac
           ;;
-        (${(j.|.)~bad}|${(j.|.)~good}|skip)
+        (${(~j.|.)bad}|${(~j.|.)good}|skip)
           # TODO: skip can take revlists.
           _arguments \
             '*: :__git_commits' && ret=0