From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8651 invoked from network); 10 Jan 2004 13:27:08 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 10 Jan 2004 13:27:08 -0000 Received: (qmail 28740 invoked by alias); 10 Jan 2004 13:26:56 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 19358 Received: (qmail 28685 invoked from network); 10 Jan 2004 13:26:55 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 10 Jan 2004 13:26:55 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [203.109.249.146] by sunsite.dk (MessageWall 1.0.8) with SMTP; 10 Jan 2004 13:26:54 -0000 Received: from p192-tnt6.syd.ihug.com.au (localhost.localdomain) [203.173.146.192] by grunt26.ihug.com.au with esmtp (Exim 3.35 #1 (Debian)) id 1AfJ8e-0000wR-00; Sun, 11 Jan 2004 00:26:52 +1100 Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by localhost.localdomain (8.12.8/8.12.8) with ESMTP id i0ADMWua001553 for ; Sun, 11 Jan 2004 00:22:32 +1100 Received: (from doug@localhost) by localhost.localdomain (8.12.8/8.12.8/Submit) id i0ADMVp6001551 for zsh-workers@sunsite.dk; Sun, 11 Jan 2004 00:22:31 +1100 X-Authentication-Warning: localhost.localdomain: doug set sender to djkea2@mugca.its.monash.edu.au using -f Date: Sun, 11 Jan 2004 00:22:31 +1100 From: Doug Kearns To: zsh-workers@sunsite.dk Subject: PATCH: elinks completion update Message-ID: <20040110132231.GV3879@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 Here's an update of _elinks for version 0.9.0. Regards, Doug Index: Completion/Unix/Command/_elinks =================================================================== RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_elinks,v retrieving revision 1.5 diff -u -r1.5 _elinks --- Completion/Unix/Command/_elinks 28 Nov 2003 06:24:14 -0000 1.5 +++ Completion/Unix/Command/_elinks 10 Jan 2004 13:17:46 -0000 @@ -1,6 +1,6 @@ #compdef elinks -# ELinks 0.4.2 - Text WWW browser +# ELinks 0.9.0 - Text WWW browser local curcontext="$curcontext" state line typeset -A opt_args @@ -9,6 +9,8 @@ '*-anonymous[restrict to anonymous mode]::boolean:(0 1)' \ '*-auto-submit[autosubmit first form]::boolean:(0 1)' \ '*-base-session[clone session with given ID]:ID number:' \ + '*-confdir[set config dir to given string]:configuration directory:_files -/' \ + '*-conffile[configuration file name]:configuration file:_files' \ '*-default-mime-type[MIME type to assume for documents]:MIME type:' \ '*-dump[write formatted version of given URL to stdout]::boolean:(0 1)' \ '*-dump-charset[codepage to use with -dump]:codepage:' \ @@ -24,6 +26,7 @@ '*-session-ring[connect to session ring with given ID]:ID number:' \ '*-source[write the source of given URL to stdout]::boolean:(0 1)' \ '(1)*-stdin[read document from stdin]::boolean:(0 1)' \ + '*-no-numbering[do not number links in dump output]::boolean:(0 1)' \ '*-touch-files[touch files in ~/.elinks when running with -no-connect/-session-ring]::boolean:(0 1)' \ '(- 1)-version[print version information and exit]' \ '1:url:->url' && ret=0