From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20391 invoked from network); 10 Dec 2005 16:27:39 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO autolearn=ham version=3.1.0 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 10 Dec 2005 16:27:39 -0000 Received: (qmail 81508 invoked from network); 10 Dec 2005 16:27:31 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 10 Dec 2005 16:27:31 -0000 Received: (qmail 9063 invoked by alias); 10 Dec 2005 16:27:24 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9774 Received: (qmail 9049 invoked from network); 10 Dec 2005 16:27:24 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 10 Dec 2005 16:27:24 -0000 Received: (qmail 80483 invoked from network); 10 Dec 2005 16:27:24 -0000 Received: from mta07-winn.ispmail.ntl.com (81.103.221.47) by a.mx.sunsite.dk with SMTP; 10 Dec 2005 16:27:23 -0000 Received: from aamta09-winn.ispmail.ntl.com ([81.103.221.35]) by mta07-winn.ispmail.ntl.com with ESMTP id <20051210162723.QATW21883.mta07-winn.ispmail.ntl.com@aamta09-winn.ispmail.ntl.com> for ; Sat, 10 Dec 2005 16:27:23 +0000 Received: from pwslaptop.csr.com ([81.105.238.64]) by aamta09-winn.ispmail.ntl.com with SMTP id <20051210162723.OMJU1233.aamta09-winn.ispmail.ntl.com@pwslaptop.csr.com> for ; Sat, 10 Dec 2005 16:27:23 +0000 Date: Sat, 10 Dec 2005 16:27:09 +0000 From: Peter Stephenson To: Zsh Users Subject: Re: zsh 4.3.0-dev-2 Message-Id: <20051210162709.2c8b5349.p.w.stephenson@ntlworld.com> In-Reply-To: <200512101603.jBAG3Y5F006182@pwslaptop.csr.com> References: <200512101603.jBAG3Y5F006182@pwslaptop.csr.com> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sat, 10 Dec 2005 16:03:33 +0000 Peter Stephenson wrote: > If your keyboard provides such characters, don't use the "bindkey -m" > option, which treats the high bit in 8-bit characters as if it were an > escape character. A shell with multibyte enabled will warn if you set > the option. You can remove all meta bindings with: > > bindkey -L | grep '\\M' | > sed -e '/^bindkey \(-R \|\)"\\M/s/[^ ]*$/undefined-key/' | > while read -r line; do eval $line; done > > (that's the simplest I could come up with; the shell doesn't provide a > direct antidote), but that doesn't seem to undo the effect completely, > so there may be a bug lurking. It's because I didn't restore the self-insert binding. Add: bindkey -R "\M-^@"-"\M-^?" self-insert (although note this will override any meta bindings you have).