From 18aa25c75d84b86be15a934554d3c829926a4066 Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Mon, 22 Aug 2016 11:54:04 +0200 Subject: unposted (c.f. Mikael: 39078): fix for git blame terms --- Completion/Unix/Command/_git | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Completion/Unix/Command/_git') 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 -- cgit v1.2.3