From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1317 invoked from network); 21 Oct 2008 21:15:23 -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=BAYES_00 autolearn=ham version=3.2.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 21 Oct 2008 21:15:23 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 6048 invoked from network); 21 Oct 2008 21:15:14 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 21 Oct 2008 21:15:14 -0000 Received: (qmail 21878 invoked by alias); 21 Oct 2008 21:15:02 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 25923 Received: (qmail 21846 invoked from network); 21 Oct 2008 21:14:59 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 21 Oct 2008 21:14:59 -0000 Received: from photonix.site5.com (photonix.site5.com [209.59.179.2]) by bifrost.dotsrc.org (Postfix) with ESMTPS id 04ED280524C0 for ; Tue, 21 Oct 2008 23:14:55 +0200 (CEST) Received: from pool-71-163-62-195.washdc.east.verizon.net ([71.163.62.195] helo=cameron) by photonix.site5.com with esmtpa (Exim 4.69) (envelope-from ) id 1KsOZ1-00079c-S1 for zsh-workers@sunsite.dk; Tue, 21 Oct 2008 17:14:52 -0400 Received: by cameron (sSMTP sendmail emulation); Tue, 21 Oct 2008 17:14:49 -0400 Date: Tue, 21 Oct 2008 17:14:49 -0400 From: Omari Norman To: ZSH Workers List Subject: Completions for fold Message-ID: <20081021211449.GA7354@cameron> Mail-Followup-To: ZSH Workers List MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="mP3DRpeJDSE+ciuQ" Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - photonix.site5.com X-AntiAbuse: Original Domain - sunsite.dk X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - smileystation.com X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: ClamAV 0.92.1/8465/Tue Oct 21 22:14:56 2008 on bifrost X-Virus-Status: Clean --mP3DRpeJDSE+ciuQ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Here are some completions for fold... --mP3DRpeJDSE+ciuQ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=_fold #compdef fold local arguments if _pick_variant gnu="Free Software Foundation" unix --version; then arguments=( '(-b --bytes)'{-b,--bytes}'[count bytes rather than columns]' '(-s --spaces)'{-s,--spaces}'[break at spaces]' '(-w --width)'{-w+,--width=}'[use WIDTH columns instead of 80]:width:' '(-h --help)'{-h,--help}'[display help and exit]' '(-v --version)'{-v,--version}'[display version and exit]' '*:filename:_files' ) else arguments=( -b'[count bytes rather than columns]' -s'[break at spaces]' -w'[use WIDTH columns instead of 80]:width:' '*:filename:_files' ) fi [[ -n $gnu ]] && _arguments -s -w -S : $arguments || _arguments : $arguments --mP3DRpeJDSE+ciuQ--