From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1784 invoked from network); 6 Feb 2005 20:14:45 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 6 Feb 2005 20:14:45 -0000 Received: (qmail 23406 invoked from network); 6 Feb 2005 20:14:38 -0000 Received: from unknown (HELO sunsite.dk) (130.225.247.90) by a.mx.sunsite.dk with SMTP; 6 Feb 2005 20:14:38 -0000 Received: (qmail 20094 invoked by alias); 6 Feb 2005 18:07:09 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 8467 Received: (qmail 20079 invoked from network); 6 Feb 2005 18:07:08 -0000 Received: from unknown (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 6 Feb 2005 18:07:08 -0000 Received: (qmail 88131 invoked from network); 6 Feb 2005 18:06:32 -0000 Received: from out009pub.verizon.net (HELO out009.verizon.net) (206.46.170.131) by a.mx.sunsite.dk with SMTP; 6 Feb 2005 18:06:28 -0000 Received: from candle.brasslantern.com ([4.11.10.129]) by out009.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20050206180622.DKYX4172.out009.verizon.net@candle.brasslantern.com>; Sun, 6 Feb 2005 12:06:22 -0600 Received: from candle.brasslantern.com (IDENT:schaefer@localhost [127.0.0.1]) by candle.brasslantern.com (8.12.11/8.12.11) with ESMTP id j16I6HGV001198; Sun, 6 Feb 2005 10:06:17 -0800 Received: (from schaefer@localhost) by candle.brasslantern.com (8.12.11/8.12.11/Submit) id j16I6HuZ001197; Sun, 6 Feb 2005 10:06:17 -0800 From: Bart Schaefer Message-Id: <1050206180616.ZM1196@candle.brasslantern.com> Date: Sun, 6 Feb 2005 18:06:16 +0000 In-Reply-To: Comments: In reply to zzapper "Re: list all except" (Feb 6, 1:49pm) References: <20050204113026.GA4217@fruitcom.com> <1050204174426.ZM15180@candle.brasslantern.com> <1050206002342.ZM16866@candle.brasslantern.com> X-Mailer: Z-Mail (5.0.0 30July97) To: zzapper Subject: Re: list all except Cc: zsh-users@sunsite.dk MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Authentication-Info: Submitted using SMTP AUTH at out009.verizon.net from [4.11.10.129] at Sun, 6 Feb 2005 12:06:17 -0600 X-Spam-Checker-Version: SpamAssassin 3.0.2 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, score=-2.6 required=6.0 tests=BAYES_00 autolearn=ham version=3.0.2 X-Spam-Hits: -2.6 [Please choose just one of zsh-users and zsh-workers, because zsh-users is copied to recipients of zsh-workers. I've stuck with -users for now.] On Feb 6, 1:49pm, zzapper wrote: } Subject: Re: list all except } } Bart, } Tried all that. } >setopt } returns nothing Hm. That would mean that it believes it has all the default settings. (The normal behavior is to print only the options that have changed.) However, that should be impossible, because "interactive" is not a default and if that's not set then you wouldn't even have a prompt. You should see at least: interactive shinstdin And probably also "zle", and given how you're starting the shell you should also see "login". } It's as thought setopt isn't functionning } I start with cygwin.bat } zsh --login -i It'd be helpful if you started up "zsh -fx" to be reasonbly sure that there isn't some kind of alias or function wrapper for setopt. (The -x will cause trace output if there's an /etc/zshenv or equivalent being loaded.) } BTW in the doc I find both } } setopt extended_glob } and } setopt extendedglob Yes, and in "man zshoptions" you'll find the first two paragraphs are: Options are primarily referred to by name. These names are case insensitive and underscores are ignored. For example, `allexport' is equivalent to `A__lleXP_ort'. The sense of an option name may be inverted by preceding it with `no', so `setopt No_Beep' is equivalent to `unsetopt beep'. This inversion can only be done once, so `nonobeep' is not a synonym for `beep'. Similarly, `tify' is not a synonym for `nonotify' (the inversion of `notify').