From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17115 invoked by alias); 30 Jan 2010 00:31:50 -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: 27642 Received: (qmail 20085 invoked from network); 30 Jan 2010 00:31:48 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED autolearn=ham version=3.2.5 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.219.209 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=zZZpllJ40jchXYy6gHdpwBomX45LD+IfkJ3dWB5MSD0=; b=aPPgSYH+iiDpKBy3HfFDkPQ8vQUpM+I9v4LP3x6/3zmGUwqD9s8j2eB7Cl4+5qyExZ shl65Qh8kQq0GlJ16m5V64+T9I/pDxYltpKdzYmjKh7AcbXZaIZbjk9ts+41Ni1lPvFA Gthdnj6PfqrZawWsKYW2hRrWlV0Tf78WIjcw4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=lbOzbrI2D7tQpgx3rfrIpii2VUJGbYXNYzMj5KvXAYS4NsUDLVu9Hs8CriC3w/PGN9 S8qLIupcaAYVb+6zPyWgL1APSVtpLERLwLPyBE18hVCYqG5AB5EsIi0oY6VXF3aEKbaa akJ8Rc1keASpimZd/QQyzLQwG1eAGN1zYCUsY= MIME-Version: 1.0 Date: Sat, 30 Jan 2010 01:31:42 +0100 Message-ID: <237967ef1001291631h7a0411bdsd4f101a2c7e55368@mail.gmail.com> Subject: N, e, + missing from sort qualifiers in _globquals From: Mikael Magnusson To: zsh workers Content-Type: text/plain; charset=UTF-8 I couldn't figure out (in the 2 minutes I managed to stay interested) how to make the e and + cases behave like they do without the o. I'm not sure how informative the help is for oe and o+, i just copied them from o and +. url to patch since i still hate email and it usually messes up http://mika.l3ib.org/patches/zsh-globquals.patch diff --git a/Completion/Zsh/Type/_globquals b/Completion/Zsh/Type/_globquals index f0c6926..9ad9488 100644 --- a/Completion/Zsh/Type/_globquals +++ b/Completion/Zsh/Type/_globquals @@ -146,6 +146,9 @@ while [[ -n $PREFIX ]]; do "m:last modification time" "c:last inode change time" "d:directory depth" + "N:no sorting" + "e:execute code" + "+:+ command name" ) _describe -t sort-specifiers "sort specifier" alts -Q -S '' return -- Mikael Magnusson