all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kevin Rodgers <kevin.d.rodgers@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: emulate readline
Date: Wed, 06 Apr 2011 22:45:31 -0600	[thread overview]
Message-ID: <injfhb$5sg$1@dough.gmane.org> (raw)
In-Reply-To: <loom.20110406T210026-679@post.gmane.org>

On 4/6/11 1:01 PM, fork wrote:
>   <despen<at>  verizon.net>  writes:
>>
>> M-p
>
> That doesn't match -- if I type "eva" I should be able to get "eval-region"
> (since that is in my history), but it gives me my latest command "pa" instead.

M-r REGEXP RET e.g. M-r eva RET

The missing functionality is to get M-r (previous-matching-history-element) to
use the current minibuffer contents as REGEXP, possibly anchored to only match
commands that begin with that.

Here's what I came up with:

;; Like previous-matching-history-element, but use the current minibuffer
;; contents as REGEXP:
(defun previous-matching-history-element-default ()
   (interactive)
   (previous-matching-history-element (concat "\\`" (regexp-quote
						    (minibuffer-contents)))
				     (prefix-numeric-value current-prefix-arg)))

;; Bind to M-R to preserve M-r:
(define-key minibuffer-local-map "\M-R" 'previous-matching-history-element-default)

For completeness, define next-matching-history-element-default to call
next-matching-history-element, and bind it to M-S.

-- 
Kevin Rodgers
Denver, Colorado, USA




  reply	other threads:[~2011-04-07  4:45 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.1.1302109600.30021.help-gnu-emacs@gnu.org>
2011-04-06 17:52 ` emulate readline despen
2011-04-06 19:01   ` fork
2011-04-07  4:45     ` Kevin Rodgers [this message]
2011-04-06 19:06   ` Richard Riley
2011-04-06 17:04 fork
2011-04-06 18:01 ` Eli Zaretskii
2011-04-06 18:53   ` fork
     [not found]   ` <mailman.11.1302116146.29474.help-gnu-emacs@gnu.org>
2011-04-06 19:14     ` despen
2011-04-06 19:59       ` fork
     [not found]       ` <mailman.19.1302119959.29474.help-gnu-emacs@gnu.org>
2011-04-06 23:44         ` despen
2011-04-07 16:44           ` fork
2011-04-06 19:19 ` Peter Dyballa
2011-04-06 19:23   ` fork
2011-04-06 19:36     ` Peter Dyballa
2011-04-06 19:44       ` fork
2011-04-06 20:21         ` Peter Dyballa
2011-04-06 20:29           ` fork
2011-04-06 20:45         ` Drew Adams
2011-04-06 21:23           ` fork
2011-04-07  1:48 ` Le Wang
2011-04-07 15:09   ` fork
     [not found] ` <mailman.0.1302140940.25667.help-gnu-emacs@gnu.org>
2011-04-07 10:32   ` Richard Riley

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='injfhb$5sg$1@dough.gmane.org' \
    --to=kevin.d.rodgers@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.