all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: storm@cua.dk (Kim F. Storm)
Subject: Re: Request for enhancement:  Scrolling (etc.) in incremental search.
Date: 25 Feb 2003 23:37:06 +0100	[thread overview]
Message-ID: <5xy944rnql.fsf@kfs2.cua.dk> (raw)
In-Reply-To: <it1e3b.75.ln@acm.acm>

Alan Mackenzie <none@example.invalid> writes:

> PROBLEM:  While searching through a file with incremental search (C-s), I
> often find myself wanting to do things like this:
> 

[...]

> 
> UNFORTUNATELY, as soon as I do any of the above, the search is
> terminated, and I find it more irritating than most people might believe

Except for the prefix arg handling (creeping featurism IMO :-),
you can achieve the same effect by suitable bindings in
isearch-mode-map, e.g.

(define-key isearch-mode-map "\C-l" 'recenter)
(define-key isearch-mode-map [prior] 'scroll-down)
(define-key isearch-mode-map [next] 'scroll-up)

(defvar isearch-control-X-map (make-sparse-keymap))
(define-key isearch-control-X-map "2" 'split-window-vertically)
(define-key isearch-control-X-map "\C-b" 'list-buffers)
(define-key isearch-control-X-map [t] 'isearch-other-control-char)
(define-key isearch-mode-map "\C-x" isearch-control-X-map)


-- 
Kim F. Storm <storm@cua.dk> http://www.cua.dk

  parent reply	other threads:[~2003-02-25 22:37 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-02-24 21:10 Request for enhancement: Scrolling (etc.) in incremental search Alan Mackenzie
2003-02-25 16:57 ` Richard Stallman
2003-02-25 22:37 ` Kim F. Storm [this message]
2003-02-26 10:57   ` Alan Mackenzie
     [not found] <E18kfaI-0007iR-00@fencepost.gnu.org>
2003-02-26 13:36 ` Alan Mackenzie
2003-03-01  2:26   ` Richard Stallman
  -- strict thread matches above, loose matches on Subject: below --
2003-10-21 22:03 Alan Mackenzie
2003-10-22  8:09 ` Alan Mackenzie
2003-10-23  9:23 ` Richard Stallman
2003-10-23 21:48   ` Alan Mackenzie
2003-10-24 23:24     ` Richard Stallman
2003-10-27  9:09       ` Alan Mackenzie
2003-11-10  6:49     ` Juri Linkov

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=5xy944rnql.fsf@kfs2.cua.dk \
    --to=storm@cua.dk \
    /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.