From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20113 invoked by alias); 13 May 2015 14:26:47 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 35100 Received: (qmail 6841 invoked from network); 13 May 2015 14:26:47 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,UNPARSEABLE_RELAY autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=thequod.de; h= references:in-reply-to:x-mailer:message-id:date:date:subject :subject:from:from:received:received:received; s=postfix2; t= 1431527205; bh=2qZ9pSQcNSGLXL9Lfc6Rnbc7QfUG4SMCn+1WhmSBoGc=; b=a 6O208GuAD/UQI8gmgu+Ks1puO7HqMdifP3i891ntNXVqyj03ujYu72YCtppCay1n QwAFG018BVna3tbWdkTm6cvaPptvP+ZrEXJ6Jl1p/sCS4aOcKrE2eC+OhLpqWoZc 7dPYlizcWu7rQobFcL0LZac1cRG7VKHCqw+fewlLro= From: Daniel Hahler To: zsh-workers@zsh.org Subject: [PATCH 1/7] completion: git: __git_recent_commits: remove ' ->*' from heads Date: Wed, 13 May 2015 16:26:25 +0200 Message-Id: <1431527191-32165-2-git-send-email-genml+zsh-workers@thequod.de> X-Mailer: git-send-email 2.4.0.dirty In-Reply-To: <1431527191-32165-1-git-send-email-genml+zsh-workers@thequod.de> References: <1431527191-32165-1-git-send-email-genml+zsh-workers@thequod.de> From: Daniel Hahler %d/%D (decorate) will also provide a pointer to a ref, e.g. > HEAD -> completion-git-fixes --- Completion/Unix/Command/_git | 1 + 1 file changed, 1 insertion(+) diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index c01333b..962b1e8 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -5673,6 +5673,7 @@ __git_recent_commits () { # see workers/34768 descr+=("$i:[$i] $k") j=${${j# \(}%\)} # strip leading ' (' and trailing ')' + j=${j%% ->*} # Remove " -> master, origin/master" etc. for j in ${(s:, :)j}; do if [[ $j == 'tag: '* ]] ; then tags+=( ${j#tag: } ) -- 2.4.0.dirty