From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15085 invoked from network); 21 Oct 2003 04:48:36 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 21 Oct 2003 04:48:36 -0000 Received: (qmail 10719 invoked by alias); 21 Oct 2003 04:48:23 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 6721 Received: (qmail 10685 invoked from network); 21 Oct 2003 04:48:22 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 21 Oct 2003 04:48:22 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [130.95.128.56] by sunsite.dk (MessageWall 1.0.8) with SMTP; 21 Oct 2003 4:48:22 -0000 Received: from 127.0.0.1 (localhost [127.0.0.1]) by dummy.domain.name (Postfix) with SMTP id 241F53677A1; Tue, 21 Oct 2003 12:48:20 +0800 (WST) Received: from tartarus.uwa.edu.au (tartarus.uwa.edu.au [130.95.128.3]) by asclepius.uwa.edu.au (Postfix) with ESMTP id 1E7F3367741; Tue, 21 Oct 2003 12:48:20 +0800 (WST) Received: by tartarus.uwa.edu.au (Postfix, from userid 22015) id E373EF7B6; Tue, 21 Oct 2003 12:48:19 +0800 (WST) Received: from localhost (localhost [127.0.0.1]) by tartarus.uwa.edu.au (Postfix) with ESMTP id D76EA130E5; Tue, 21 Oct 2003 12:48:19 +0800 (WST) Date: Tue, 21 Oct 2003 12:48:19 +0800 (WST) From: James Andrewartha To: "Thomas L. Bevan" Cc: zsh-users@sunsite.dk Subject: Re: Activating the completion functions for the various Unix commands. In-Reply-To: <200310211035.14739.thomas_bevan@toll.com.au> Message-ID: References: <200310211035.14739.thomas_bevan@toll.com.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Tue, 21 Oct 2003, Thomas L. Bevan wrote: > As a new user, I've noticed that zsh bundles with a large number of functions > that seem to allow flag completion for the common unix functions. > > How should I set up my .zshrc file so that I can take advantage of them? The simple way (according to the zshcompsys man page) is: autoload -U compinit compinit You can also run compinstall to install and customise zshcompsys to taste. James Andrewartha