From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18829 invoked from network); 14 Mar 2003 08:03:43 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 14 Mar 2003 08:03:43 -0000 Received: (qmail 4884 invoked by alias); 14 Mar 2003 08:03:38 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 18351 Received: (qmail 4876 invoked from network); 14 Mar 2003 08:03:37 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 14 Mar 2003 08:03:37 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [203.109.249.141] by sunsite.dk (MessageWall 1.0.8) with SMTP; 14 Mar 2003 8:3:37 -0000 Received: from p84-tnt6.syd.ihug.com.au (localhost.localdomain) [203.173.146.84] by grunt21.ihug.com.au with esmtp (Exim 3.35 #1 (Debian)) id 18tdqt-0005Up-00; Fri, 14 Mar 2003 12:19:15 +1100 Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by localhost.localdomain (8.12.5/8.12.5) with ESMTP id h2E1NwaJ007461 for ; Fri, 14 Mar 2003 12:23:59 +1100 Received: (from doug@localhost) by localhost.localdomain (8.12.5/8.12.5/Submit) id h2E1Nv1C007459 for zsh-workers@sunsite.dk; Fri, 14 Mar 2003 12:23:57 +1100 X-Authentication-Warning: localhost.localdomain: doug set sender to djkea2@mugca.its.monash.edu.au using -f Date: Fri, 14 Mar 2003 12:23:57 +1100 From: Doug Kearns To: zsh-workers@sunsite.dk Subject: PATCH: antiword completion Message-ID: <20030314012357.GH954@localhost.localdomain> Mail-Followup-To: zsh-workers@sunsite.dk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i A new completion function for antiword. Regards, Doug Index: Completion/Unix/Command/_antiword =================================================================== RCS file: Completion/Unix/Command/_antiword diff -N Completion/Unix/Command/_antiword --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ Completion/Unix/Command/_antiword 14 Mar 2003 01:18:12 -0000 @@ -0,0 +1,16 @@ +#compdef antiword + +# Version: 0.33 (05 Jul 2002) + +_arguments -s -S \ + '(-p)-t[text output (default)]' \ + '(-t -w)-p+[PostScript output]:paper size:(10x14 a3 a4 a5 b4 b5 executive folio legal letter note quarto statement tabloid)' \ + '-m+[character mapping file]:mapping file:_files' \ + '(-p)-w+[width in characters of text output]:line width:' \ + '(-t -w)-i+[image level (PostScript only)]:image level:((0\:use\ non\ standard\ extensions\ from\ Ghostscript 1\:show\ no\ images 2\:PostScript\ level\ 2\ compatible 3\:PostScript\ level\ 3\ compatible))' \ + '(-t -w)-L[use landscape mode (PostScript only)]' \ + '-s[show hidden (by Word) text]' \ + '(* -)-h[give a help message]' \ + '*:MS Word file:_files -g \*.doc' && return + +return 1