From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25274 invoked by alias); 15 Jul 2010 03:39:14 -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: 28077 Received: (qmail 18273 invoked from network); 15 Jul 2010 03:39:13 -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=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE, T_TO_NO_BRKTS_FREEMAIL autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.212.43 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:content-type; bh=jwKa8avOb81hudhid7y+bWyn23E979lxS3dsgv+xXQg=; b=PVeG2RnESAqN/7F7jIdBeXYbdTxOGJTnowWMt4gr2GiNJ0pWKb86sUZJy3vrSwf3L8 t/hyZISirK+CT38qzUW1YuAsLb5PIDHRZkCtnZ3Egryu++xNk24v7UGVohT66ah3xKmw nZ269ffEtiMk8QwWYuiXDcXNfIhMJ61FFbH84= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; b=xYfeONgDiVrn4qAkxCpiDH6h6yLKmpGSejDzS/2bvtyKvKm80RYQJExzAJNjxl9wmt 91hQxlHb/p+g8r3LSpLrvrBjczqGokDlD+FoFErBJdf/JZe09XTYpAT9Ux9hazQmrmjq L0axE+ot2tYtc4GUwCkiLI22dZRlc9E9QaKq4= MIME-Version: 1.0 In-Reply-To: References: <1278984596-10715-1-git-send-email-michael.a.hwang@gmail.com> From: Doug Kearns Date: Thu, 15 Jul 2010 13:38:49 +1000 Message-ID: Subject: Re: [PATCH] Added gpg-zip completion. To: zsh-workers@zsh.org Content-Type: text/plain; charset=ISO-8859-1 On Wed, Jul 14, 2010 at 7:34 AM, Michael Hwang wrote: > Okay, I've reworked _gpg. I've add gpg-zip completion, added many > missing gpg options, and fixed gpgv's options. I've attached it, since > the diff is bigger than the file. Committed, thanks. > I'm curious to know if it's possible to get tar and gpg completions > inside of the --{tar,gpg}-args options for gpg-zip. Yes you can with something like: compset -q words=( fake "$words[@]" ) (( CURRENT++ )) _tar Regards, Doug