From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29739 invoked from network); 25 Mar 2003 09:21:45 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 25 Mar 2003 09:21:45 -0000 Received: (qmail 29253 invoked by alias); 25 Mar 2003 09:21:26 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 5988 Received: (qmail 29242 invoked from network); 25 Mar 2003 09:21:26 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 25 Mar 2003 09:21:26 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [212.125.75.4] by sunsite.dk (MessageWall 1.0.8) with SMTP; 25 Mar 2003 9:21:26 -0000 Received: (qmail 21882 invoked from network); 25 Mar 2003 09:20:53 -0000 Received: from iris.logica.co.uk (158.234.9.163) by server-3.tower-1.messagelabs.com with SMTP; 25 Mar 2003 09:20:53 -0000 Received: from finches.logica.co.uk ([158.234.142.11]) by iris.logica.co.uk (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id JAA17199 for ; Tue, 25 Mar 2003 09:20:53 GMT X-Authentication-Warning: iris.logica.co.uk: Host [158.234.142.11] claimed to be finches.logica.co.uk Received: from finches.logica.co.uk (localhost [127.0.0.1]) by finches.logica.co.uk (8.11.6/8.11.6/SuSE Linux 0.5) with ESMTP id h2P9PBK01511 for ; Tue, 25 Mar 2003 10:25:11 +0100 X-VirusChecked: Checked In-reply-to: <20030324220312.GB2028@eumel.yoo.local> From: Oliver Kiddle References: <20030323195632.GC1407@eumel.yoo.local> <2750.1048513642@finches.logica.co.uk> <20030324220312.GB2028@eumel.yoo.local> To: Zsh users Subject: Re: Small Completion Problem Date: Tue, 25 Mar 2003 10:25:10 +0100 Message-ID: <1509.1048584310@finches.logica.co.uk> Thorsten Haude wrote: > > >No, it should work (does for me though I name the alias 'nedit'). What > >version of zsh are you running? Do you have the complete_aliases option > >unset? What does it complete after n - It should give you nc options > >but if you get options for netcat, then there is something wrong. > > $ZSH_VERSION is 4.0.4 > > 'n -\t' definitely looks like Netcat. The netcat completion is not distributed with zsh 4.0.4 (or any 4.0.x) precisely because of the nedit name clash. So you must have a netcat completion from somewhere else and installed somewhere in your $fpath. > I now looked around a bit (never expected that NEdit is supported > (should have remembered that you are using it)) and found > .../Completion/X/_nedit, which is Greek to me. What could I do to get > the completion I want, if I don't care what happens to Netcat? Find the netcat completion and remove it. $^fpath/$_comps[nc](N) should find it for you. Oliver