From: "Drew Adams" <drew.adams@oracle.com>
To: "'Juri Linkov'" <juri@jurta.org>
Cc: 6387@debbugs.gnu.org
Subject: bug#6387: 24.0.50; ESC TAB should be bound to `isearch-complete'
Date: Thu, 10 Jun 2010 09:34:10 -0700 [thread overview]
Message-ID: <17F31C816C46405B851631E028BCA79C@us.oracle.com> (raw)
In-Reply-To: <87k4q67t6k.fsf@mail.jurta.org>
> > In isearch.el, we have this:
> > (define-key map "\M-\t" 'isearch-complete)
> >
> > We should also have this, so `ESC TAB' works too:
> > (define-key map [escape tab] 'isearch-complete)
>
> I wonder why `ESC C-i' works in isearch, but `ESC TAB' doesn't work.
> (There is no special key binding for `ESC C-i' in isearch.)
See this comment in the code:
;; To handle local bindings with meta char prefix keys, define
;; another full keymap. This must be done for any other prefix
;; keys as well, one full keymap per char of the prefix key. It
;; would be simpler to disable the global keymap, and/or have a
;; default local key binding for any key not otherwise bound.
(let ((meta-map (make-sparse-keymap)))
(define-key map (char-to-string meta-prefix-char) meta-map)
(define-key map [escape] meta-map))
(define-key map (vector meta-prefix-char t) 'isearch-other-meta-char)
next prev parent reply other threads:[~2010-06-10 16:34 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-10 0:20 bug#6387: 24.0.50; ESC TAB should be bound to `isearch-complete' Drew Adams
2010-06-10 16:23 ` Juri Linkov
2010-06-10 16:34 ` Drew Adams [this message]
2010-06-10 19:36 ` Stefan Monnier
2016-08-21 20:46 ` Alex
2016-08-21 21:52 ` Drew Adams
2016-08-21 22:06 ` Nicolas Petton
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=17F31C816C46405B851631E028BCA79C@us.oracle.com \
--to=drew.adams@oracle.com \
--cc=6387@debbugs.gnu.org \
--cc=juri@jurta.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.