From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14317 invoked by alias); 24 Oct 2011 16:46:54 -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: 29853 Received: (qmail 3728 invoked from network); 24 Oct 2011 16:46:50 -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,SPF_HELO_PASS autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at lorien.comfychair.org designates 173.8.144.98 as permitted sender) Date: Mon, 24 Oct 2011 09:46:33 -0700 From: Danek Duvall To: Peter Stephenson Cc: Mailing-list zsh-workers Subject: Re: Some more compdefs Message-ID: <20111024164633.GA26255@lorien.comfychair.org> Mail-Followup-To: Danek Duvall , Peter Stephenson , Mailing-list zsh-workers References: <20111024100649.5d8fb669@pwslap01u.europe.root.pri> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20111024100649.5d8fb669@pwslap01u.europe.root.pri> User-Agent: Mutt/1.5.20 (2010-04-22) Peter Stephenson wrote: > On Sun, 23 Oct 2011 20:24:08 +0200 > Julien Nicoulaud wrote: > > > May be a Zsh committer could start taking a look and see if some of them > > could be integrated in Zsh ? > > They sound potentially very useful, but if you think any of them are > suitable for inclusion as they stand you should probably post them to > the list --- unless somebody else thinks they have time to look through > them, which would be splendid, although I wouldn't assume it's likely. On a related note, I've been updating the Solaris-specific completions I've submitted here, but have been failing to keep pushing them. If you'd like to pull what we're shipping for Solaris 11, here's where they live: http://src.opensolaris.org/source/xref/userland/gate/components/zsh/Completion/ where there is at least one bug, in _zpool, which can be fixed with this patch: --- a/components/zsh/Completion/Unix/Command/_zpool +++ b/components/zsh/Completion/Unix/Command/_zpool @@ -100,7 +100,7 @@ _zpool() { (clear) _arguments -A "-*" \ '-F[Discard transactions to allow pool opening]' \ - '-n[With -F, check if discarding transactions would work' \ + '-n[With -F, check if discarding transactions would work]' \ ':pool name:_zfs_pool' \ '*:virtual device:_files' ;; Then again, perhaps most people building zsh from source are doing so on older releases of Solaris, where some of these completion functions may be too far ahead, functionally. Danek