From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9745 invoked from network); 18 Feb 2003 13:55:09 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 18 Feb 2003 13:55:09 -0000 Received: (qmail 19338 invoked by alias); 18 Feb 2003 13:54:59 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 18259 Received: (qmail 19331 invoked from network); 18 Feb 2003 13:54:58 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 18 Feb 2003 13:54:58 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [203.109.249.144] by sunsite.dk (MessageWall 1.0.8) with SMTP; 18 Feb 2003 13:54:57 -0000 Received: from p297-tnt3.syd.ihug.com.au (localhost.localdomain) [203.173.133.43] by grunt24.ihug.com.au with esmtp (Exim 3.35 #1 (Debian)) id 18l8D5-0001jM-00; Wed, 19 Feb 2003 00:54:59 +1100 Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by localhost.localdomain (8.12.5/8.12.5) with ESMTP id h1IEFZ9P005468 for ; Wed, 19 Feb 2003 01:15:36 +1100 Received: (from doug@localhost) by localhost.localdomain (8.12.5/8.12.5/Submit) id h1IEFXhp005466 for zsh-workers@sunsite.dk; Wed, 19 Feb 2003 01:15:33 +1100 X-Authentication-Warning: localhost.localdomain: doug set sender to djkea2@mugca.its.monash.edu.au using -f Date: Wed, 19 Feb 2003 01:15:33 +1100 From: Doug Kearns To: zsh-workers@sunsite.dk Subject: PATCH: minor updates to _urls and _webbrowser Message-ID: <20030218141533.GD17147@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 I noticed that the description for _urls was 'urls' which seems inconsistent with the other types so I think it should be changed to 'url'. I also added some more browsers to _webbrowsers. Regards, Doug Index: Completion/Unix/Command/_webbrowser =================================================================== RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_webbrowser,v retrieving revision 1.4 diff -u -r1.4 _webbrowser --- Completion/Unix/Command/_webbrowser 12 Dec 2001 11:34:18 -0000 1.4 +++ Completion/Unix/Command/_webbrowser 18 Feb 2003 13:38:41 -0000 @@ -1,3 +1,3 @@ -#compdef amaya arena chimera express grail gzilla hotjava mmm opera www xmosaic Mosaic galeon konqueror skipstone light dillo +#compdef amaya arena chimera dillo express galeon grail gzilla hotjava konqueror light mmm Mosaic netrik opera phoenix retawq skipstone www xmosaic zen _alternative 'files:file:_files' 'urls:url:_urls' Index: Completion/Unix/Type/_urls =================================================================== RCS file: /cvsroot/zsh/zsh/Completion/Unix/Type/_urls,v retrieving revision 1.7 diff -u -r1.7 _urls --- Completion/Unix/Type/_urls 9 Aug 2002 16:05:46 -0000 1.7 +++ Completion/Unix/Type/_urls 18 Feb 2003 13:38:41 -0000 @@ -48,7 +48,7 @@ if [[ $#urls -gt 1 || ( $#urls -eq 1 && ! -d $urls[1] ) ]]; then [[ $#urls -eq 1 && -f $urls[1] ]] && urls=( $(< $urls[1]) ) - _wanted urls expl 'urls' compadd -a urls && return 0 + _wanted urls expl 'url' compadd -a urls && return 0 urls=() fi