From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10157 invoked from network); 1 Apr 2001 16:14:14 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 1 Apr 2001 16:14:14 -0000 Received: (qmail 15087 invoked by alias); 1 Apr 2001 16:14:06 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 13862 Received: (qmail 15072 invoked from network); 1 Apr 2001 16:14:06 -0000 Sender: opk Message-ID: <3AC7453F.BECCB0B9@u.genie.co.uk> Date: Sun, 01 Apr 2001 16:11:59 +0100 From: Oliver Kiddle X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.18 i586) X-Accept-Language: en MIME-Version: 1.0 To: Peter Stephenson CC: Zsh hackers list Subject: Re: PATCH: list bindings with given prefix. References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Peter Stephenson wrote: > > This allows `bindkey -p ' to list bindings which have as a > prefix (not counting bindings for itself). The previous unposted zle How do I use this to list all key bindings which are Meta something: bindkey -p \\M doesn't work. Also, I've just noticed that the output of bindkey includes these: "^\^" up-case-word "^\^[OA" up-history "^\^[OB" down-history "^\^[OC" forward-char "^\^[OD" backward-char "^\^[[A" up-history "^\^[[B" down-history "^\^[[C" forward-char "^\^[[D" backward-char The first one is set from this command in my .zshrc: bindkey '^^' up-case-word but I don't see where the back-slash came from. It is also there in 3.1.9-dev-8 so this isn't recent. I also don't see why the others should start with ^\. I don't know where they come from - after zsh -f followed by . ./.zshrc, they aren't there but I expect they have something to do with the recent changes for binding cursor keys (they don't appear in 3.1.9-dev-8). Oliver