From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9110 invoked from network); 1 Jun 2002 14:34:02 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 1 Jun 2002 14:34:02 -0000 Received: (qmail 14204 invoked by alias); 1 Jun 2002 14:33:43 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 5023 Received: (qmail 14191 invoked from network); 1 Jun 2002 14:33:42 -0000 Date: Sat, 1 Jun 2002 10:33:37 -0400 From: Clint Adams To: ZSH User List Subject: Re: trying completion of varying data Message-ID: <20020601143337.GA27730@dman.com> References: <20020531225024.A17033@radiomaranon.org.pe> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020531225024.A17033@radiomaranon.org.pe> User-Agent: Mutt/1.3.28i X-Virus-Scanned: by amavisd-milter (http://amavis.org/) > I tried > zstyle ':completion:*:*:xvncviewer:*' command 'show.active.pcs' > (where show.active.pcs does the above) > but it doesn't even try to call the show.active.pcs script. I think you want something more along the lines of zstyle ':completion:*:xvncviewer:*:hosts' hosts $(show.active.pcs) or zstyle -e ':completion:*:xvncviewer:*:hosts' hosts 'reply=( $(show.active.pcs) )'