From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26291 invoked from network); 18 Aug 2004 17:53:38 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 18 Aug 2004 17:53:38 -0000 Received: (qmail 19225 invoked from network); 18 Aug 2004 17:53:32 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 18 Aug 2004 17:53:32 -0000 Received: (qmail 6790 invoked by alias); 18 Aug 2004 17:52:48 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7881 Received: (qmail 6780 invoked from network); 18 Aug 2004 17:52:47 -0000 Received: from unknown (HELO a.mx.sunsite.dk) (130.225.247.88) by 130.225.247.90 with SMTP; 18 Aug 2004 17:52:47 -0000 Received: (qmail 17631 invoked from network); 18 Aug 2004 17:50:55 -0000 Received: from main.gmane.org (80.91.224.249) by a.mx.sunsite.dk with SMTP; 18 Aug 2004 17:50:54 -0000 Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BxUaL-0001nd-00 for ; Wed, 18 Aug 2004 19:50:53 +0200 Received: from isi-dial-142-61.isionline-dialin.de ([195.158.142.61]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Aug 2004 19:50:53 +0200 Received: from thorsten by isi-dial-142-61.isionline-dialin.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Aug 2004 19:50:53 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: zsh-users@sunsite.dk From: Thorsten Kampe Subject: Re: 'zstyle ':predict' verbose true' hangs on zsh 4.2.1 Date: Wed, 18 Aug 2004 19:50:43 +0200 Message-ID: <1vk1025c4qlpi$.dlg@thorstenkampe.de> References: <16eqy0eejlrzr$.dlg@thorstenkampe.de> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: isi-dial-142-61.isionline-dialin.de User-Agent: 40tude_Dialog/2.0.12.1de Sender: news X-Spam-Checker-Version: SpamAssassin 2.63 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, hits=-0.0 required=6.0 tests=BAYES_44 autolearn=no version=2.63 X-Spam-Hits: -0.0 * Bart Schaefer (2004-08-18 03:14 +0200) > On Wed, 18 Aug 2004, Thorsten Kampe wrote: >> "zstyle ':predict' verbose true" doesn't work with the newest zsh. > > schaefer<509> echo $ZSH_VERSION > 4.2.1-dev-1 > > If from here I type ^X^Z, I see > > schaefer<510> _ > predict-on > > (with the cursor at the underscore). Type ^Z and I get > > schaefer<510> _ > predict-off > [...] > > There are a lot of things about predict-on et al. that could be improved > with some of the newer zsh features, but this bit is working for me. Can > you narrow it down to any other settings? Well, I thought it was simple, but here is what I experience: thorsten@wolfbrand% _ thorsten@wolfbrand% zstyle ':predict' verbose false predict-on thorsten@wolfbrand% _ thorsten@wolfbrand% zstyle ':predict' verbose true thorsten@wolfbrand% _ zsh is 4.2.1. I deleted my whole .zshrc (except the initialisation for predict and I always see the same - local on my Gentoo Linux box and remote via ssh. With rxvt and with "konsole". What information can I give you to narrow the problem?! This is the base initialisation: autoload -U predict-on; predict-on zle-line-init() { predict-on } zle -N zle-line-init zle -N predict-on zle -N predict-off zstyle ':predict' verbose true Thorsten