From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9262 invoked from network); 7 Jul 1999 08:37:09 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 7 Jul 1999 08:37:09 -0000 Received: (qmail 2861 invoked by alias); 7 Jul 1999 08:37:01 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 6998 Received: (qmail 2854 invoked from network); 7 Jul 1999 08:37:00 -0000 Message-Id: <9907070808.AA31980@ibmth.df.unipi.it> To: zsh-workers@sunsite.auc.dk (Zsh hackers list) Subject: PATCH: pws-25: history search Date: Wed, 07 Jul 1999 10:08:13 +0200 From: Peter Stephenson In versions of zsh up to 3.0.6, \M-p is bound to history-search-backward, and so on. Zefram changed this when the history search behaviour changed in 3.1. However, now it's back pretty much the way it was --- I didn't follow all the discussion, but if I remember right there are only a few rare cases where it to differs. So as I already suggested we could put the history-search bindings back the way they were. --- Src/Zle/zle_bindings.c.search Wed Apr 29 23:42:44 1998 +++ Src/Zle/zle_bindings.c Tue Jul 6 14:58:52 1999 @@ -200,9 +200,9 @@ /* M-K */ z_undefinedkey, /* M-L */ z_downcaseword, /* M-M */ z_undefinedkey, - /* M-N */ z_historybeginningsearchforward, + /* M-N */ z_historysearchforward, /* M-O */ z_undefinedkey, - /* M-P */ z_historybeginningsearchbackward, + /* M-P */ z_historysearchbackward, /* M-Q */ z_pushline, /* M-R */ z_undefinedkey, /* M-S */ z_spellword, @@ -232,9 +232,9 @@ /* M-k */ z_undefinedkey, /* M-l */ z_downcaseword, /* M-m */ z_undefinedkey, - /* M-n */ z_historybeginningsearchforward, + /* M-n */ z_historysearchforward, /* M-o */ z_undefinedkey, - /* M-p */ z_historybeginningsearchbackward, + /* M-p */ z_historysearchbackward, /* M-q */ z_pushline, /* M-r */ z_undefinedkey, /* M-s */ z_spellword, -- Peter Stephenson Tel: +39 050 844536 WWW: http://www.ifh.de/~pws/ Dipartimento di Fisica, Via Buonarroti 2, 56127 Pisa, Italy