unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Xah Lee <xahlee@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Why function behaves differently when bound to different key  combo?
Date: Fri, 28 Nov 2008 06:00:13 -0800 (PST)	[thread overview]
Message-ID: <52652ad0-4657-49d4-ab3e-5066de443801@o40g2000prn.googlegroups.com> (raw)
In-Reply-To: 6daf5632-fd9e-4ade-a2d3-b23ca738f9da@r37g2000prr.googlegroups.com

On Nov 27, 8:38 pm, "seber...@spawar.navy.mil"
<seber...@spawar.navy.mil> wrote:
> Normally incremental search can be repeated by pressing C-s multiple
> times.
>
> Why if I remap incremental search to C-f I CANNOT repeat it by
> pressing C-f multiple times?....
>
> Here is how I remapped it...
>
> (global-set-key "\^f" 'isearch-forward)

other mentioned you need to bind isearch-repeart-forward too, but that
won't work if you just bind them to global map, because when you run
isearch, you are technically in isearch mino mode.

Here's what to do. for example, if you want M-s to be isearch, then
do:

(global-set-key (kbd "M-s") 'isearch-forward)
(global-set-key (kbd "M-S") 'isearch-backward)

(add-hook 'isearch-mode-hook
 (lambda ()
 (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
 (define-key isearch-mode-map (kbd "M-S") 'isearch-repeat-backward)

 (define-key isearch-mode-map (kbd "M-n") 'forward-char) ; was isearch-
ring-advance
 (define-key isearch-mode-map (kbd "M-p") 'kill-word) ; was isearch-
ring-retreat

 (define-key isearch-mode-map (kbd "M-c") 'previous-line) ; was
isearch-toggle-case-fold
 (define-key isearch-mode-map (kbd "M-r") 'forward-word) ; was isearch-
toggle-regexp
 (define-key isearch-mode-map (kbd "M-e") 'delete-backward-char) ; was
isearch-edit-string

 (define-key isearch-mode-map (kbd "<f11>") 'isearch-ring-retreat)
 (define-key isearch-mode-map (kbd "<f12>") 'isearch-ring-advance)
 )
)

more general guide here:

• How to Define Keyboard Shortcuts in Emacs
  http://xahlee.org/emacs/keyboard_shortcuts.html

• How To Reclaim Keybindings In Emacs
  http://xahlee.org/emacs/ergonomic_emacs_keybinding_minibuffer.html

-----------------

PS when you look into isearch's map, you'll notice that it defines
quite a lot other features/shortcuts. I'd say, 90% of them are never
used once for those who have 4 years of emacs experience . For veteran
emacs diehards, say those who used emacs over 10 years, if i can make
a guess with my 10 years of daily emacs use and observation of other
emacs users, i'd say 50% of the shortcuts provided by isearch are
never used once in their life. These complexity and buried features
should be reorganized. The proper isearch key should be Ctrl+f or Ctrl
+g. That's the universal modern UI standard.

  Xah
∑ http://xahlee.org/

  parent reply	other threads:[~2008-11-28 14:00 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-28  4:38 Why function behaves differently when bound to different key combo? seberino
2008-11-28  6:22 ` Phil Carmody
2008-11-28  6:28 ` Andy Stewart
2008-11-28 14:00 ` Xah Lee [this message]
2008-11-28 20:54   ` isearch key bindings [was: Why function behaves differently when bound to different key combo?] Alan Mackenzie
     [not found]   ` <mailman.1453.1227904853.26697.help-gnu-emacs@gnu.org>
2008-11-30  2:38     ` Xah Lee
2008-11-30 15:22       ` Kevin Rodgers

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=52652ad0-4657-49d4-ab3e-5066de443801@o40g2000prn.googlegroups.com \
    --to=xahlee@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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).