From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1965 invoked by alias); 2 May 2011 08:34:27 -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: 29124 Received: (qmail 22107 invoked from network); 2 May 2011 08:34:25 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received-SPF: none (ns1.primenet.com.au: domain at now.ath.cx does not designate permitted sender hosts) X-SENDER-IP: [83.227.19.124] X-LISTENER: [smtp.bredband.net] X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AmFyAGZnvk1T4xN8PGdsb2JhbACJGI86jUgLAQEBATcywBGGAASOeY4k X-IronPort-AV: E=Sophos;i="4.64,301,1301868000"; d="scan'208";a="186048329" From: Nikolai Weibull To: zsh-workers@zsh.org Cc: Nikolai Weibull Subject: [PATCH] Fix -l option for git-tag completion Date: Mon, 2 May 2011 10:16:57 +0200 Message-Id: <1304324217-1428-1-git-send-email-now@bitwi.se> X-Mailer: git-send-email 1.7.4.4 In-Reply-To: References: --- Completion/Unix/Command/_git | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 4664cfa..0135cb9 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -1509,12 +1509,12 @@ _git-tag () { '*:: :__git_ignore_line_inside_arguments __git_tags' \ - listing \ '-n+[limit line output of annotation]: :__git_guard_number "limit"' \ - '-l[list tags matching pattern]:pattern' \ + '-l[list tags matching pattern]' \ '--contains=[only list tags which contain the specified commit]: :__git_commits' \ + '::pattern' \ - verification \ '-v[verifies gpg signutare of tags]' \ - '*:: :__git_ignore_line_inside_arguments __git_tags' \ - && ret=0 + '*:: :__git_ignore_line_inside_arguments __git_tags' && ret=0 } # Ancillary Commands (Manipulators) -- 1.7.4.4