Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: pws-25: history search
- X-seq: zsh-workers 6998
- From: Peter Stephenson <pws@xxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx (Zsh hackers list)
- Subject: PATCH: pws-25: history search
- Date: Wed, 07 Jul 1999 10:08:13 +0200
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
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 <pws@xxxxxxxxxxxxxxxxx> Tel: +39 050 844536
WWW: http://www.ifh.de/~pws/
Dipartimento di Fisica, Via Buonarroti 2, 56127 Pisa, Italy
Messages sorted by:
Reverse Date,
Date,
Thread,
Author