From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 503 invoked from network); 18 Jun 2000 16:00:42 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 18 Jun 2000 16:00:42 -0000 Received: (qmail 26204 invoked by alias); 18 Jun 2000 16:00:18 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 11967 Received: (qmail 26197 invoked from network); 18 Jun 2000 16:00:17 -0000 From: "Bart Schaefer" Message-Id: <1000618160001.ZM13346@candle.brasslantern.com> Date: Sun, 18 Jun 2000 16:00:01 +0000 In-Reply-To: Comments: In reply to Tanaka Akira "completion at beginning of line" (Jun 18, 6:33pm) References: X-Mailer: Z-Mail (5.0.0 30July97) To: Tanaka Akira , zsh-workers@sunsite.auc.dk Subject: Re: completion at beginning of line MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Jun 18, 6:33pm, Tanaka Akira wrote: } Subject: completion at beginning of line } } _main_complete:52: command not found: no } } Hm. Why? Sven typo in 11873. Index: Completion/Core/_main_complete =================================================================== @@ -49,7 +49,7 @@ fi if [[ "$compstate[insert]" = tab* ]]; then - { "$tmp" = (|[[:blank:]]*)(yes|true|on|1)(|[[:blank:]]*) && + { [[ "$tmp" = (|[[:blank:]]*)(yes|true|on|1)(|[[:blank:]]*) ]] && { [[ "$curcontext" != :* || -z "$compstate[vared]" ]] || zstyle -t ":completion:vared${curcontext}:" insert-tab } } && return 0 -- Bart Schaefer Brass Lantern Enterprises http://www.well.com/user/barts http://www.brasslantern.com Zsh: http://www.zsh.org | PHPerl Project: http://phperl.sourceforge.net