From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from gatech.edu (gatech.edu [130.207.244.244]) by werple.mira.net.au (8.6.12/8.6.9) with SMTP id HAA21662 for ; Thu, 6 Jul 1995 07:14:50 +1000 Received: from math (math.skiles.gatech.edu) by gatech.edu with SMTP id AA29880 (5.65c/Gatech-10.0-IDA for ); Wed, 5 Jul 1995 17:15:00 -0400 Received: by math (5.x/SMI-SVR4) id AA25533; Wed, 5 Jul 1995 17:11:35 -0400 Old-Return-Path: Resent-Date: Wed, 5 Jul 95 14:15:52 PDT Old-Return-Path: Date: Wed, 5 Jul 95 14:15:52 PDT From: unpingco@ece.ucsd.edu (Jose Unpingco) Message-Id: <9507052115.AA15078@sunshine.ucsd.edu> To: zsh-users@math.gatech.edu Subject: help w/ logic on compctl pattern Resent-Message-Id: <"VHeR62.0.OE6.5-l-l"@math> Resent-From: zsh-users@math.gatech.edu X-Mailing-List: archive/latest/46 X-Loop: zsh-users@math.gatech.edu X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu Hi, I want to set up the compctl so that vi args complete only files which are not directories and are not files that end in .bak. I got as far as ls *(^/) which lists everything not a directory and ls ^bak which lists every file not ending in bak but I can't figure how to AND these two patterns together. thanks.