2 @c This is part of the XEmacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
4 @c Copyright (C) 1996 Ben Wing.
5 @c See the file lispref.texi for copying conditions.
6 @setfilename ../../info/keymaps.info
7 @node Keymaps, Menus, Command Loop, Top
11 @c This section is largely different from the one in FSF Emacs.
13 The bindings between input events and commands are recorded in data
14 structures called @dfn{keymaps}. Each binding in a keymap associates
15 (or @dfn{binds}) an individual event type either with another keymap or
16 with a command. When an event is bound to a keymap, that keymap is
17 used to look up the next input event; this continues until a command
18 is found. The whole process is called @dfn{key lookup}.
21 * Keymap Terminology:: Definitions of terms pertaining to keymaps.
22 * Format of Keymaps:: What a keymap looks like as a Lisp object.
23 * Creating Keymaps:: Functions to create and copy keymaps.
24 * Inheritance and Keymaps:: How one keymap can inherit the bindings
26 * Key Sequences:: How to specify key sequences.
27 * Prefix Keys:: Defining a key with a keymap as its definition.
28 * Active Keymaps:: Each buffer has a local keymap
29 to override the standard (global) bindings.
30 A minor mode can also override them.
31 * Key Lookup:: How extracting elements from keymaps works.
32 * Functions for Key Lookup:: How to request key lookup.
33 * Changing Key Bindings:: Redefining a key in a keymap.
34 * Key Binding Commands:: Interactive interfaces for redefining keys.
35 * Scanning Keymaps:: Looking through all keymaps, for printing help.
36 * Other Keymap Functions:: Miscellaneous keymap functions.
39 @node Keymap Terminology
40 @section Keymap Terminology
44 @cindex binding of a key
48 A @dfn{keymap} is a table mapping event types to definitions (which
49 can be any Lisp objects, though only certain types are meaningful for
50 execution by the command loop). Given an event (or an event type) and a
51 keymap, XEmacs can get the event's definition. Events mapped in keymaps
52 include keypresses, button presses, and button releases
55 A sequence of input events that form a unit is called a
56 @dfn{key sequence}, or @dfn{key} for short. A sequence of one event
57 is always a key sequence, and so are some multi-event sequences.
59 A keymap determines a binding or definition for any key sequence. If
60 the key sequence is a single event, its binding is the definition of the
61 event in the keymap. The binding of a key sequence of more than one
62 event is found by an iterative process: the binding of the first event
63 is found, and must be a keymap; then the second event's binding is found
64 in that keymap, and so on until all the events in the key sequence are
67 If the binding of a key sequence is a keymap, we call the key sequence
68 a @dfn{prefix key}. Otherwise, we call it a @dfn{complete key} (because
69 no more events can be added to it). If the binding is @code{nil},
70 we call the key @dfn{undefined}. Examples of prefix keys are @kbd{C-c},
71 @kbd{C-x}, and @kbd{C-x 4}. Examples of defined complete keys are
72 @kbd{X}, @key{RET}, and @kbd{C-x 4 C-f}. Examples of undefined complete
73 keys are @kbd{C-x C-g}, and @kbd{C-c 3}. @xref{Prefix Keys}, for more
76 The rule for finding the binding of a key sequence assumes that the
77 intermediate bindings (found for the events before the last) are all
78 keymaps; if this is not so, the sequence of events does not form a
79 unit---it is not really a key sequence. In other words, removing one or
80 more events from the end of any valid key must always yield a prefix
81 key. For example, @kbd{C-f C-n} is not a key; @kbd{C-f} is not a prefix
82 key, so a longer sequence starting with @kbd{C-f} cannot be a key.
84 Note that the set of possible multi-event key sequences depends on the
85 bindings for prefix keys; therefore, it can be different for different
86 keymaps, and can change when bindings are changed. However, a one-event
87 sequence is always a key sequence, because it does not depend on any
88 prefix keys for its well-formedness.
90 At any time, several primary keymaps are @dfn{active}---that is, in
91 use for finding key bindings. These are the @dfn{global map}, which is
92 shared by all buffers; the @dfn{local keymap}, which is usually
93 associated with a specific major mode; and zero or more @dfn{minor mode
94 keymaps}, which belong to currently enabled minor modes. (Not all minor
95 modes have keymaps.) The local keymap bindings shadow (i.e., take
96 precedence over) the corresponding global bindings. The minor mode
97 keymaps shadow both local and global keymaps. @xref{Active Keymaps},
100 @node Format of Keymaps
101 @section Format of Keymaps
102 @cindex format of keymaps
103 @cindex keymap format
105 A keymap is a primitive type that associates events with their
106 bindings. Note that this is different from Emacs 18 and FSF Emacs,
107 where keymaps are lists.
109 @defun keymapp object
110 This function returns @code{t} if @var{object} is a keymap, @code{nil}
114 @node Creating Keymaps
115 @section Creating Keymaps
116 @cindex creating keymaps
118 Here we describe the functions for creating keymaps.
120 @defun make-keymap &optional name
121 This function constructs and returns a new keymap object. All entries
122 in it are @code{nil}, meaning ``command undefined''.
124 Optional argument @var{name} specifies a name to assign to the keymap,
125 as in @code{set-keymap-name}. This name is only a debugging
126 convenience; it is not used except when printing the keymap.
129 @defun make-sparse-keymap &optional name
130 This function constructs and returns a new keymap object. All entries
131 in it are @code{nil}, meaning ``command undefined''. The only
132 difference between this function and @code{make-keymap} is that this
133 function returns a ``smaller'' keymap (one that is expected to contain
134 fewer entries). As keymaps dynamically resize, this distinction is not
137 Optional argument @var{name} specifies a name to assign to the keymap,
138 as in @code{set-keymap-name}. This name is only a debugging
139 convenience; it is not used except when printing the keymap.
142 @defun set-keymap-name keymap new-name
143 This function assigns a ``name'' to a keymap. The name is only a
144 debugging convenience; it is not used except when printing the keymap.
147 @defun keymap-name keymap
148 This function returns the ``name'' of a keymap, as assigned using
149 @code{set-keymap-name}.
152 @defun copy-keymap keymap
153 This function returns a copy of @var{keymap}. Any keymaps that
154 appear directly as bindings in @var{keymap} are also copied recursively,
155 and so on to any number of levels. However, recursive copying does not
156 take place when the definition of a character is a symbol whose function
157 definition is a keymap; the same symbol appears in the new copy.
161 (setq map (copy-keymap (current-local-map)))
162 @result{} #<keymap 3 entries 0x21f80>
166 (eq map (current-local-map))
169 @ignore @c Doesn't work!
171 (equal map (current-local-map))
178 @node Inheritance and Keymaps
179 @section Inheritance and Keymaps
180 @cindex keymap inheritance
181 @cindex inheriting a keymap's bindings
182 @cindex keymap parent
183 @cindex parent of a keymap
185 A keymap can inherit the bindings of other keymaps. The other
186 keymaps are called the keymap's @dfn{parents}, and are set with
187 @code{set-keymap-parents}. When searching for a binding for a key
188 sequence in a particular keymap, that keymap itself will first be
189 searched; then, if no binding was found in the map and it has parents,
190 the first parent keymap will be searched; then that keymap's parent will
191 be searched, and so on, until either a binding for the key sequence is
192 found, or a keymap without a parent is encountered. At this point,
193 the search will continue with the next parent of the most recently
194 encountered keymap that has another parent, etc. Essentially, a
195 depth-first search of all the ancestors of the keymap is conducted.
197 @code{(current-global-map)} is the default parent of all keymaps.
199 @defun set-keymap-parents keymap parents
200 This function sets the parent keymaps of @var{keymap} to the list
203 If you change the bindings in one of the keymaps in @var{parents} using
204 @code{define-key} or other key-binding functions, these changes are
205 visible in @var{keymap} unless shadowed by bindings in that map or in
206 earlier-searched ancestors. The converse is not true: if you use
207 @code{define-key} to change @var{keymap}, that affects the bindings in
208 that map, but has no effect on any of the keymaps in @var{parents}.
211 @defun keymap-parents keymap
212 This function returns the list of parent keymaps of @var{keymap}, or
213 @code{nil} if @var{keymap} has no parents.
216 As an alternative to specifying a parent, you can also specify a
217 @dfn{default binding} that is used whenever a key is not otherwise bound
218 in the keymap. This is useful for terminal emulators, for example,
219 which may want to trap all keystrokes and pass them on in some modified
220 format. Note that if you specify a default binding for a keymap,
221 neither the keymap's parents nor the current global map are searched for
224 @defun set-keymap-default-binding keymap command
225 This function sets the default binding of @var{keymap} to @var{command},
226 or @code{nil} if no default is desired.
229 @defun keymap-default-binding keymap
230 This function returns the default binding of @var{keymap}, or @code{nil}
235 @section Key Sequences
236 @cindex key sequences
238 Contrary to popular belief, the world is not @sc{ascii}. When running
239 under a window manager, XEmacs can tell the difference between, for
240 example, the keystrokes @kbd{control-h}, @kbd{control-shift-h}, and
241 @kbd{backspace}. You can, in fact, bind different commands to each of
244 A @dfn{key sequence} is a set of keystrokes. A @dfn{keystroke} is a
245 keysym and some set of modifiers (such as @key{CONTROL} and @key{META}).
246 A @dfn{keysym} is what is printed on the keys on your keyboard.
248 A keysym may be represented by a symbol, or (if and only if it is
249 equivalent to an @sc{ascii} character in the range 32 - 255) by a
250 character or its equivalent @sc{ascii} code. The @kbd{A} key may be
251 represented by the symbol @code{A}, the character @code{?A}, or by the
252 number 65. The @kbd{break} key may be represented only by the symbol
255 A keystroke may be represented by a list: the last element of the list
256 is the key (a symbol, character, or number, as above) and the preceding
257 elements are the symbolic names of modifier keys (@key{CONTROL},
258 @key{META}, @key{SUPER}, @key{HYPER}, @key{ALT}, and @key{SHIFT}).
259 Thus, the sequence @kbd{control-b} is represented by the forms
260 @code{(control b)}, @code{(control ?b)}, and @code{(control 98)}. A
261 keystroke may also be represented by an event object, as returned by the
262 @code{next-command-event} and @code{read-key-sequence} functions.
264 Note that in this context, the keystroke @kbd{control-b} is @emph{not}
265 represented by the number 2 (the @sc{ascii} code for @samp{^B}) or the
266 character @code{?\^B}. See below.
268 The @key{SHIFT} modifier is somewhat of a special case. You should
269 not (and cannot) use @code{(meta shift a)} to mean @code{(meta A)},
270 since for characters that have @sc{ascii} equivalents, the state of the
271 shift key is implicit in the keysym (@samp{a} vs. @samp{A}). You also
272 cannot say @code{(shift =)} to mean @code{+}, as that sort of thing
273 varies from keyboard to keyboard. The @key{SHIFT} modifier is for use
274 only with characters that do not have a second keysym on the same key,
275 such as @code{backspace} and @code{tab}.
277 A key sequence is a vector of keystrokes. As a degenerate case,
278 elements of this vector may also be keysyms if they have no modifiers.
279 That is, the @kbd{A} keystroke is represented by all of these forms:
282 A ?A 65 (A) (?A) (65)
283 [A] [?A] [65] [(A)] [(?A)] [(65)]
286 the @kbd{control-a} keystroke is represented by these forms:
289 (control A) (control ?A) (control 65)
290 [(control A)] [(control ?A)] [(control 65)]
293 the key sequence @kbd{control-c control-a} is represented by these
297 [(control c) (control a)] [(control ?c) (control ?a)]
298 [(control 99) (control 65)] etc.
301 Mouse button clicks work just like keypresses: @code{(control
302 button1)} means pressing the left mouse button while holding down the
303 control key. @code{[(control c) (shift button3)]} means
304 @kbd{control-c}, hold @key{SHIFT}, click right.
306 Commands may be bound to the mouse-button up-stroke rather than the
307 down-stroke as well. @code{button1} means the down-stroke, and
308 @code{button1up} means the up-stroke. Different commands may be bound
309 to the up and down strokes, though that is probably not what you want,
312 For backward compatibility, a key sequence may also be represented by
313 a string. In this case, it represents the key sequence(s) that would
314 produce that sequence of @sc{ascii} characters in a purely @sc{ascii}
315 world. For example, a string containing the @sc{ascii} backspace
316 character, @code{"\^H"}, would represent two key sequences:
317 @code{(control h)} and @code{backspace}. Binding a command to this will
318 actually bind both of those key sequences. Likewise for the following
327 control @@ control space
330 After binding a command to two key sequences with a form like
333 (define-key global-map "\^X\^I" 'command-1)
337 it is possible to redefine only one of those sequences like so:
340 (define-key global-map [(control x) (control i)] 'command-2)
341 (define-key global-map [(control x) tab] 'command-3)
344 Of course, all of this applies only when running under a window
345 system. If you're talking to XEmacs through a @sc{tty} connection, you
346 don't get any of these features.
348 @defun event-matches-key-specifier-p event key-specifier
349 This function returns non-@code{nil} if @var{event} matches
350 @var{key-specifier}, which can be any valid form representing a key
351 sequence. This can be useful, e.g., to determine if the user pressed
352 @code{help-char} or @code{quit-char}.
359 A @dfn{prefix key} has an associated keymap that defines what to do
360 with key sequences that start with the prefix key. For example,
361 @kbd{C-x} is a prefix key, and it uses a keymap that is also stored in
362 the variable @code{ctl-x-map}. Here is a list of the standard prefix
363 keys of XEmacs and their keymaps:
368 @code{help-map} is used for events that follow @kbd{C-h}.
372 @vindex mode-specific-map
373 @code{mode-specific-map} is for events that follow @kbd{C-c}. This
374 map is not actually mode specific; its name was chosen to be informative
375 for the user in @kbd{C-h b} (@code{display-bindings}), where it
376 describes the main use of the @kbd{C-c} prefix key.
381 @findex Control-X-prefix
382 @code{ctl-x-map} is the map used for events that follow @kbd{C-x}. This
383 map is also the function definition of @code{Control-X-prefix}.
388 @code{ctl-x-4-map} is used for events that follow @kbd{C-x 4}.
394 @code{ctl-x-5-map} is used for events that follow @kbd{C-x 5}.
401 The prefix keys @kbd{C-x n}, @kbd{C-x r} and @kbd{C-x a} use keymaps
402 that have no special name.
407 @code{esc-map} is an evil hack that is present for compatibility
408 purposes with Emacs 18. Defining a key in @code{esc-map} is equivalent
409 to defining the same key in @code{global-map} but with the @key{META}
410 prefix added. You should @emph{not} use this in your code. (This map is
411 also the function definition of @code{ESC-prefix}.)
414 The binding of a prefix key is the keymap to use for looking up the
415 events that follow the prefix key. (It may instead be a symbol whose
416 function definition is a keymap. The effect is the same, but the symbol
417 serves as a name for the prefix key.) Thus, the binding of @kbd{C-x} is
418 the symbol @code{Control-X-prefix}, whose function definition is the
419 keymap for @kbd{C-x} commands. (The same keymap is also the value of
422 Prefix key definitions can appear in any active keymap. The
423 definitions of @kbd{C-c}, @kbd{C-x}, @kbd{C-h} and @key{ESC} as prefix
424 keys appear in the global map, so these prefix keys are always
425 available. Major and minor modes can redefine a key as a prefix by
426 putting a prefix key definition for it in the local map or the minor
427 mode's map. @xref{Active Keymaps}.
429 If a key is defined as a prefix in more than one active map, then its
430 various definitions are in effect merged: the commands defined in the
431 minor mode keymaps come first, followed by those in the local map's
432 prefix definition, and then by those from the global map.
434 In the following example, we make @kbd{C-p} a prefix key in the local
435 keymap, in such a way that @kbd{C-p} is identical to @kbd{C-x}. Then
436 the binding for @kbd{C-p C-f} is the function @code{find-file}, just
437 like @kbd{C-x C-f}. The key sequence @kbd{C-p 6} is not found in any
442 (use-local-map (make-sparse-keymap))
446 (local-set-key "\C-p" ctl-x-map)
450 (key-binding "\C-p\C-f")
455 (key-binding "\C-p6")
460 @defun define-prefix-command symbol &optional mapvar
461 @cindex prefix command
462 This function defines @var{symbol} as a prefix command: it creates a
463 keymap and stores it as @var{symbol}'s function definition.
464 Storing the symbol as the binding of a key makes the key a prefix key
465 that has a name. If optional argument @var{mapvar} is not specified,
466 it also sets @var{symbol} as a variable, to have the keymap as its
467 value. (If @var{mapvar} is given and is not @code{t}, its value is
468 stored as the value of @var{symbol}.) The function returns @var{symbol}.
470 In Emacs version 18, only the function definition of @var{symbol} was
471 set, not the value as a variable.
475 @section Active Keymaps
476 @cindex active keymap
477 @cindex global keymap
480 XEmacs normally contains many keymaps; at any given time, just a few of
481 them are @dfn{active} in that they participate in the interpretation
482 of user input. These are the global keymap, the current buffer's
483 local keymap, and the keymaps of any enabled minor modes.
485 The @dfn{global keymap} holds the bindings of keys that are defined
486 regardless of the current buffer, such as @kbd{C-f}. The variable
487 @code{global-map} holds this keymap, which is always active.
489 Each buffer may have another keymap, its @dfn{local keymap}, which may
490 contain new or overriding definitions for keys. The current buffer's
491 local keymap is always active except when @code{overriding-local-map} or
492 @code{overriding-terminal-local-map} overrides it. Extents and text
493 properties can specify an alternative local map for certain parts of the
494 buffer; see @ref{Extents and Events}.
496 Each minor mode may have a keymap; if it does, the keymap is active
497 when the minor mode is enabled.
499 The variable @code{overriding-local-map} and
500 @code{overriding-terminal-local-map}, if non-@code{nil}, specify other
501 local keymaps that override the buffer's local map and all the minor
504 All the active keymaps are used together to determine what command to
505 execute when a key is entered. XEmacs searches these maps one by one, in
506 order of decreasing precedence, until it finds a binding in one of the maps.
510 For key-presses, the order of keymaps searched is:
514 the @code{keymap} property of any extent(s) or text properties at point;
516 any applicable minor-mode maps;
518 the current local map of the current buffer;
520 the current global map.
523 For mouse-clicks, the order of keymaps searched is:
527 the current local map of the @code{mouse-grabbed-buffer} if any;
529 the @code{keymap} property of any extent(s) at the position of the click
530 (this includes modeline extents);
532 the @code{modeline-map} of the buffer corresponding to the modeline
533 under the mouse (if the click happened over a modeline);
535 the value of @code{toolbar-map} in the current buffer (if the click
536 happened over a toolbar);
538 the current local map of the buffer under the mouse (does not
539 apply to toolbar clicks);
541 any applicable minor-mode maps;
543 the current global map.
546 Note that if @code{overriding-local-map} or
547 @code{overriding-terminal-local-map} is non-@code{nil}, @emph{only}
548 those two maps and the current global map are searched.
550 The procedure for searching a single keymap is called
551 @dfn{key lookup}; see @ref{Key Lookup}.
553 @cindex major mode keymap
554 Since every buffer that uses the same major mode normally uses the
555 same local keymap, you can think of the keymap as local to the mode. A
556 change to the local keymap of a buffer (using @code{local-set-key}, for
557 example) is seen also in the other buffers that share that keymap.
559 The local keymaps that are used for Lisp mode, C mode, and several
560 other major modes exist even if they have not yet been used. These
561 local maps are the values of the variables @code{lisp-mode-map},
562 @code{c-mode-map}, and so on. For most other modes, which are less
563 frequently used, the local keymap is constructed only when the mode is
564 used for the first time in a session.
566 The minibuffer has local keymaps, too; they contain various completion
567 and exit commands. @xref{Intro to Minibuffers}.
569 @xref{Standard Keymaps}, for a list of standard keymaps.
571 @defun current-keymaps &optional event-or-keys
572 This function returns a list of the current keymaps that will be
573 searched for bindings. This lists keymaps such as the current local map
574 and the minor-mode maps, but does not list the parents of those keymaps.
575 @var{event-or-keys} controls which keymaps will be listed. If
576 @var{event-or-keys} is a mouse event (or a vector whose last element is
577 a mouse event), the keymaps for that mouse event will be listed.
578 Otherwise, the keymaps for key presses will be listed.
582 This variable contains the default global keymap that maps XEmacs
583 keyboard input to commands. The global keymap is normally this keymap.
584 The default global keymap is a full keymap that binds
585 @code{self-insert-command} to all of the printing characters.
587 It is normal practice to change the bindings in the global map, but you
588 should not assign this variable any value other than the keymap it starts
592 @defun current-global-map
593 This function returns the current global keymap. This is the
594 same as the value of @code{global-map} unless you change one or the
600 @result{} #<keymap global-map 639 entries 0x221>
605 @defun current-local-map &optional buffer
606 This function returns @var{buffer}'s local keymap, or @code{nil}
607 if it has none. @var{buffer} defaults to the current buffer.
609 In the following example, the keymap for the @samp{*scratch*} buffer
610 (using Lisp Interaction mode) has a number of entries, including one
611 prefix key, @kbd{C-x}.
616 @result{} #<keymap lisp-interaction-mode-map 5 entries 0x558>
617 (describe-bindings-internal (current-local-map))
618 @result{} ; @r{Inserted into the buffer:}
619 backspace backward-delete-char-untabify
620 linefeed eval-print-last-sexp
622 C-j eval-print-last-sexp
623 C-x << Prefix Command >>
624 M-tab lisp-complete-symbol
625 M-; lisp-indent-for-comment
626 M-C-i lisp-complete-symbol
629 Alt-backspace backward-kill-sexp
639 @defun current-minor-mode-maps
640 This function returns a list of the keymaps of currently enabled minor modes.
643 @defun use-global-map keymap
644 This function makes @var{keymap} the new current global keymap. It
647 It is very unusual to change the global keymap.
650 @defun use-local-map keymap &optional buffer
651 This function makes @var{keymap} the new local keymap of @var{buffer}.
652 @var{buffer} defaults to the current buffer. If @var{keymap} is
653 @code{nil}, then the buffer has no local keymap. @code{use-local-map}
654 returns @code{nil}. Most major mode commands use this function.
658 @defvar minor-mode-map-alist
659 This variable is an alist describing keymaps that may or may not be
660 active according to the values of certain variables. Its elements look
664 (@var{variable} . @var{keymap})
667 The keymap @var{keymap} is active whenever @var{variable} has a
668 non-@code{nil} value. Typically @var{variable} is the variable that
669 enables or disables a minor mode. @xref{Keymaps and Minor Modes}.
671 Note that elements of @code{minor-mode-map-alist} do not have the same
672 structure as elements of @code{minor-mode-alist}. The map must be the
673 @sc{cdr} of the element; a list with the map as the second element will
676 What's more, the keymap itself must appear in the @sc{cdr}. It does not
677 work to store a variable in the @sc{cdr} and make the map the value of
680 When more than one minor mode keymap is active, their order of priority
681 is the order of @code{minor-mode-map-alist}. But you should design
682 minor modes so that they don't interfere with each other. If you do
683 this properly, the order will not matter.
685 See also @code{minor-mode-key-binding}, above. See @ref{Keymaps and
686 Minor Modes}, for more information about minor modes.
690 This variable holds the keymap consulted for mouse-clicks on the
691 modeline of a window. This variable may be buffer-local; its value will
692 be looked up in the buffer of the window whose modeline was clicked
697 This variable holds the keymap consulted for mouse-clicks over a
701 @defvar mouse-grabbed-buffer
702 If non-@code{nil}, a buffer which should be consulted first for all
703 mouse activity. When a mouse-click is processed, it will first be
704 looked up in the local-map of this buffer, and then through the normal
705 mechanism if there is no binding for that click. This buffer's value of
706 @code{mode-motion-hook} will be consulted instead of the
707 @code{mode-motion-hook} of the buffer of the window under the mouse.
708 You should @emph{bind} this, not set it.
711 @defvar overriding-local-map
712 If non-@code{nil}, this variable holds a keymap to use instead of the
713 buffer's local keymap and instead of all the minor mode keymaps. This
714 keymap, if any, overrides all other maps that would have been active,
715 except for the current global map.
718 @defvar overriding-terminal-local-map
719 If non-@code{nil}, this variable holds a keymap to use instead of the
720 buffer's local keymap and instead of all the minor mode keymaps, but for
721 the selected console only. (In other words, this variable is always
722 console-local; putting a keymap here only applies to keystrokes coming
723 from the selected console. @xref{Consoles and Devices}.) This keymap,
724 if any, overrides all other maps that would have been active, except for
725 the current global map.
733 @dfn{Key lookup} is the process of finding the binding of a key
734 sequence from a given keymap. Actual execution of the binding is not
737 Key lookup uses just the event type of each event in the key
738 sequence; the rest of the event is ignored. In fact, a key sequence
739 used for key lookup may designate mouse events with just their types
740 (symbols) instead of with entire mouse events (lists). @xref{Events}.
741 Such a pseudo-key-sequence is insufficient for @code{command-execute},
742 but it is sufficient for looking up or rebinding a key.
744 When the key sequence consists of multiple events, key lookup
745 processes the events sequentially: the binding of the first event is
746 found, and must be a keymap; then the second event's binding is found in
747 that keymap, and so on until all the events in the key sequence are used
748 up. (The binding thus found for the last event may or may not be a
749 keymap.) Thus, the process of key lookup is defined in terms of a
750 simpler process for looking up a single event in a keymap. How that is
751 done depends on the type of object associated with the event in that
754 Let's use the term @dfn{keymap entry} to describe the value found by
755 looking up an event type in a keymap. (This doesn't include the item
756 string and other extra elements in menu key bindings because
757 @code{lookup-key} and other key lookup functions don't include them in
758 the returned value.) While any Lisp object may be stored in a keymap as
759 a keymap entry, not all make sense for key lookup. Here is a list of
760 the meaningful kinds of keymap entries:
764 @cindex @code{nil} in keymap
765 @code{nil} means that the events used so far in the lookup form an
766 undefined key. When a keymap fails to mention an event type at all, and
767 has no default binding, that is equivalent to a binding of @code{nil}
771 @cindex keymap in keymap
772 The events used so far in the lookup form a prefix key. The next
773 event of the key sequence is looked up in @var{keymap}.
776 @cindex command in keymap
777 The events used so far in the lookup form a complete key,
778 and @var{command} is its binding. @xref{What Is a Function}.
781 @cindex string in keymap
782 The array (either a string or a vector) is a keyboard macro. The events
783 used so far in the lookup form a complete key, and the array is its
784 binding. See @ref{Keyboard Macros}, for more information. (Note that
785 you cannot use a shortened form of a key sequence here, such as
786 @code{(control y)}; you must use the full form @code{[(control y)]}.
787 @xref{Key Sequences}.)
790 @cindex list in keymap
791 The meaning of a list depends on the types of the elements of the list.
795 @cindex @code{lambda} in keymap
796 If the @sc{car} of @var{list} is @code{lambda}, then the list is a
797 lambda expression. This is presumed to be a command, and is treated as
801 If the @sc{car} of @var{list} is a keymap and the @sc{cdr} is an event
802 type, then this is an @dfn{indirect entry}:
805 (@var{othermap} . @var{othertype})
808 When key lookup encounters an indirect entry, it looks up instead the
809 binding of @var{othertype} in @var{othermap} and uses that.
811 This feature permits you to define one key as an alias for another key.
812 For example, an entry whose @sc{car} is the keymap called @code{esc-map}
813 and whose @sc{cdr} is 32 (the code for @key{SPC}) means, ``Use the global
814 binding of @kbd{Meta-@key{SPC}}, whatever that may be.''
818 @cindex symbol in keymap
819 The function definition of @var{symbol} is used in place of
820 @var{symbol}. If that too is a symbol, then this process is repeated,
821 any number of times. Ultimately this should lead to an object that is
822 a keymap, a command or a keyboard macro. A list is allowed if it is a
823 keymap or a command, but indirect entries are not understood when found
826 Note that keymaps and keyboard macros (strings and vectors) are not
827 valid functions, so a symbol with a keymap, string, or vector as its
828 function definition is invalid as a function. It is, however, valid as
829 a key binding. If the definition is a keyboard macro, then the symbol
830 is also valid as an argument to @code{command-execute}
831 (@pxref{Interactive Call}).
833 @cindex @code{undefined} in keymap
834 The symbol @code{undefined} is worth special mention: it means to treat
835 the key as undefined. Strictly speaking, the key is defined, and its
836 binding is the command @code{undefined}; but that command does the same
837 thing that is done automatically for an undefined key: it rings the bell
838 (by calling @code{ding}) but does not signal an error.
840 @cindex preventing prefix key
841 @code{undefined} is used in local keymaps to override a global key
842 binding and make the key ``undefined'' locally. A local binding of
843 @code{nil} would fail to do this because it would not override the
846 @item @var{anything else}
847 If any other type of object is found, the events used so far in the
848 lookup form a complete key, and the object is its binding, but the
849 binding is not executable as a command.
852 In short, a keymap entry may be a keymap, a command, a keyboard macro,
853 a symbol that leads to one of them, or an indirection or @code{nil}.
855 @node Functions for Key Lookup
856 @section Functions for Key Lookup
858 Here are the functions and variables pertaining to key lookup.
860 @defun lookup-key keymap key &optional accept-defaults
861 This function returns the definition of @var{key} in @var{keymap}. If
862 the string or vector @var{key} is not a valid key sequence according to
863 the prefix keys specified in @var{keymap} (which means it is ``too
864 long'' and has extra events at the end), then the value is a number, the
865 number of events at the front of @var{key} that compose a complete key.
868 If @var{accept-defaults} is non-@code{nil}, then @code{lookup-key}
869 considers default bindings as well as bindings for the specific events
870 in @var{key}. Otherwise, @code{lookup-key} reports only bindings for
871 the specific sequence @var{key}, ignoring default bindings except when
872 you explicitly ask about them.
874 All the other functions described in this chapter that look up keys use
879 (lookup-key (current-global-map) "\C-x\C-f")
883 (lookup-key (current-global-map) "\C-x\C-f12345")
888 If @var{key} begins with the character whose value is contained in
889 @code{meta-prefix-char}, that character is implicitly removed and the
890 @key{META} modifier added to the key. Thus, the first example below is
891 handled by conversion into the second example.
895 (lookup-key (current-global-map) "\ef")
896 @result{} forward-word
899 (lookup-key (current-global-map) "\M-f")
900 @result{} forward-word
904 Unlike @code{read-key-sequence}, this function does not modify the
905 specified events in ways that discard information (@pxref{Key Sequence
906 Input}). In particular, it does not convert letters to lower case.
909 @deffn Command undefined
910 Used in keymaps to undefine keys. If a key sequence is defined to this,
911 invoking this key sequence causes a ``key undefined'' error, just as if
912 the key sequence had no binding.
915 @defun key-binding key &optional accept-defaults
916 This function returns the binding for @var{key} in the current
917 keymaps, trying all the active keymaps. The result is @code{nil} if
918 @var{key} is undefined in the keymaps.
921 The argument @var{accept-defaults} controls checking for default
922 bindings, as in @code{lookup-key} (above).
926 (key-binding "\C-x\C-f")
928 (key-binding '(control home))
929 @result{} beginning-of-buffer
930 (key-binding [escape escape escape])
931 @result{} keyboard-escape-quit
936 @defun local-key-binding keys &optional accept-defaults
937 This function returns the binding for @var{keys} in the current
938 local keymap, or @code{nil} if it is undefined there.
941 The argument @var{accept-defaults} controls checking for default bindings,
942 as in @code{lookup-key} (above).
945 @defun global-key-binding keys &optional accept-defaults
946 This function returns the binding for command @var{keys} in the
947 current global keymap, or @code{nil} if it is undefined there.
950 The argument @var{accept-defaults} controls checking for default bindings,
951 as in @code{lookup-key} (above).
955 @defun minor-mode-key-binding key &optional accept-defaults
956 This function returns a list of all the active minor mode bindings of
957 @var{key}. More precisely, it returns an alist of pairs
958 @code{(@var{modename} . @var{binding})}, where @var{modename} is the
959 variable that enables the minor mode, and @var{binding} is @var{key}'s
960 binding in that mode. If @var{key} has no minor-mode bindings, the
963 If the first binding is not a prefix command, all subsequent bindings
964 from other minor modes are omitted, since they would be completely
965 shadowed. Similarly, the list omits non-prefix bindings that follow
968 The argument @var{accept-defaults} controls checking for default
969 bindings, as in @code{lookup-key} (above).
972 @defvar meta-prefix-char
974 This variable is the meta-prefix character code. It is used when
975 translating a two-character sequence to a meta character so it can be
976 looked up in a keymap. For useful results, the value should be a prefix
977 event (@pxref{Prefix Keys}). The default value is @code{?\^[} (integer
978 27), which is the @sc{ascii} character usually produced by the @key{ESC}
981 As long as the value of @code{meta-prefix-char} remains @code{?\^[},
982 key lookup translates @kbd{@key{ESC} b} into @kbd{M-b}, which is
983 normally defined as the @code{backward-word} command. However, if you
984 set @code{meta-prefix-char} to @code{?\^X} (i.e. the keystroke
985 @kbd{C-x}) or its equivalent @sc{ascii} code @code{24}, then XEmacs will
986 translate @kbd{C-x b} (whose standard binding is the
987 @code{switch-to-buffer} command) into @kbd{M-b}.
991 meta-prefix-char ; @r{The default value.}
992 @result{} ?\^[ ; @r{Under XEmacs 20.}
993 @result{} 27 ; @r{Under XEmacs 19.}
997 @result{} backward-word
1000 ?\C-x ; @r{The print representation}
1001 ; @r{of a character.}
1002 @result{} ?\^X ; @r{Under XEmacs 20.}
1003 @result{} 24 ; @r{Under XEmacs 19.}
1006 (setq meta-prefix-char 24)
1010 (key-binding "\C-xb")
1011 @result{} backward-word ; @r{Now, typing @kbd{C-x b} is}
1012 ; @r{like typing @kbd{M-b}.}
1014 (setq meta-prefix-char ?\e) ; @r{Avoid confusion!}
1015 ; @r{Restore the default value!}
1016 @result{} ?\^[ ; @r{Under XEmacs 20.}
1017 @result{} 27 ; @r{Under XEmacs 19.}
1022 @node Changing Key Bindings
1023 @section Changing Key Bindings
1024 @cindex changing key bindings
1027 The way to rebind a key is to change its entry in a keymap. If you
1028 change a binding in the global keymap, the change is effective in all
1029 buffers (though it has no direct effect in buffers that shadow the
1030 global binding with a local one). If you change the current buffer's
1031 local map, that usually affects all buffers using the same major mode.
1032 The @code{global-set-key} and @code{local-set-key} functions are
1033 convenient interfaces for these operations (@pxref{Key Binding
1034 Commands}). You can also use @code{define-key}, a more general
1035 function; then you must specify explicitly the map to change.
1037 The way to specify the key sequence that you want to rebind is
1038 described above (@pxref{Key Sequences}).
1040 For the functions below, an error is signaled if @var{keymap} is not a
1041 keymap or if @var{key} is not a string or vector representing a key
1042 sequence. You can use event types (symbols) as shorthand for events
1045 @defun define-key keymap key binding
1046 This function sets the binding for @var{key} in @var{keymap}. (If
1047 @var{key} is more than one event long, the change is actually made
1048 in another keymap reached from @var{keymap}.) The argument
1049 @var{binding} can be any Lisp object, but only certain types are
1050 meaningful. (For a list of meaningful types, see @ref{Key Lookup}.)
1051 The value returned by @code{define-key} is @var{binding}.
1053 @cindex invalid prefix key error
1054 @cindex key sequence error
1055 Every prefix of @var{key} must be a prefix key (i.e., bound to a
1056 keymap) or undefined; otherwise an error is signaled.
1058 If some prefix of @var{key} is undefined, then @code{define-key} defines
1059 it as a prefix key so that the rest of @var{key} may be defined as
1063 Here is an example that creates a sparse keymap and makes a number of
1068 (setq map (make-sparse-keymap))
1069 @result{} #<keymap 0 entries 0xbee>
1072 (define-key map "\C-f" 'forward-char)
1073 @result{} forward-char
1077 @result{} #<keymap 1 entry 0xbee>
1078 (describe-bindings-internal map)
1079 @result{} ; @r{(Inserted in buffer)}
1084 ;; @r{Build sparse submap for @kbd{C-x} and bind @kbd{f} in that.}
1085 (define-key map "\C-xf" 'forward-word)
1086 @result{} forward-word
1090 @result{} #<keymap 2 entries 0xbee>
1091 (describe-bindings-internal map)
1092 @result{} ; @r{(Inserted in buffer)}
1094 C-x << Prefix Command >>
1100 ;; @r{Bind @kbd{C-p} to the @code{ctl-x-map}.}
1101 (define-key map "\C-p" ctl-x-map)
1103 @result{} #<keymap Control-X-prefix 77 entries 0x3bf>
1107 ;; @r{Bind @kbd{C-f} to @code{foo} in the @code{ctl-x-map}.}
1108 (define-key map "\C-p\C-f" 'foo)
1113 @result{} #<keymap 3 entries 0xbee>
1114 (describe-bindings-internal map)
1115 @result{} ; @r{(Inserted in buffer)}
1117 C-p << Prefix command Control-X-prefix >>
1118 C-x << Prefix Command >>
1120 C-p tab indent-rigidly
1121 C-p $ set-selective-display
1123 C-p ( start-kbd-macro
1126 C-p C-x exchange-point-and-mark
1127 C-p C-z suspend-or-iconify-emacs
1128 C-p M-escape repeat-complex-command
1129 C-p M-C-[ repeat-complex-command
1133 C-p 4 . find-tag-other-window
1135 C-p 4 C-o display-buffer
1137 C-p 5 0 delete-frame
1139 C-p 5 C-f find-file-other-frame
1143 C-p a i g inverse-add-global-abbrev
1144 C-p a i l inverse-add-mode-abbrev
1149 Note that storing a new binding for @kbd{C-p C-f} actually works by
1150 changing an entry in @code{ctl-x-map}, and this has the effect of
1151 changing the bindings of both @kbd{C-p C-f} and @kbd{C-x C-f} in the
1154 @defun substitute-key-definition olddef newdef keymap &optional oldmap prefix
1155 @cindex replace bindings
1156 This function replaces @var{olddef} with @var{newdef} for any keys in
1157 @var{keymap} that were bound to @var{olddef}. In other words,
1158 @var{olddef} is replaced with @var{newdef} wherever it appears. Prefix
1159 keymaps are checked recursively.
1161 The function returns @code{nil}.
1163 For example, this redefines @kbd{C-x C-f}, if you do it in an XEmacs with
1168 (substitute-key-definition
1169 'find-file 'find-file-read-only (current-global-map))
1174 If @var{oldmap} is non-@code{nil}, then its bindings determine which
1175 keys to rebind. The rebindings still happen in @var{keymap}, not in
1176 @var{oldmap}. Thus, you can change one map under the control of the
1177 bindings in another. For example,
1180 (substitute-key-definition
1181 'delete-backward-char 'my-funny-delete
1186 puts the special deletion command in @code{my-map} for whichever keys
1187 are globally bound to the standard deletion command.
1189 If argument @var{prefix} is non-@code{nil}, then only those occurrences
1190 of @var{olddef} found in keymaps accessible through the keymap bound to
1191 @var{prefix} in @var{keymap} are redefined. See also
1192 @code{accessible-keymaps}.
1196 Prefix keymaps that appear within @var{keymap} are not checked
1197 recursively for keys bound to @var{olddef}; they are not changed at all.
1198 Perhaps it would be better to check nested keymaps recursively.
1201 @ignore @c #### fix this up.
1202 Here is an example showing a keymap before and after substitution:
1210 @result{} (keymap (49 . olddef-1) (50 . olddef-2) (51 . olddef-1))
1214 (substitute-key-definition 'olddef-1 'newdef map)
1219 @result{} (keymap (49 . newdef) (50 . olddef-2) (51 . newdef))
1225 @defun suppress-keymap keymap &optional nodigits
1226 @cindex @code{self-insert-command} override
1227 This function changes the contents of the full keymap @var{keymap} by
1228 making all the printing characters undefined. More precisely, it binds
1229 them to the command @code{undefined}. This makes ordinary insertion of
1230 text impossible. @code{suppress-keymap} returns @code{nil}.
1232 If @var{nodigits} is @code{nil}, then @code{suppress-keymap} defines
1233 digits to run @code{digit-argument}, and @kbd{-} to run
1234 @code{negative-argument}. Otherwise it makes them undefined like the
1235 rest of the printing characters.
1237 @cindex yank suppression
1238 @cindex @code{quoted-insert} suppression
1239 The @code{suppress-keymap} function does not make it impossible to
1240 modify a buffer, as it does not suppress commands such as @code{yank}
1241 and @code{quoted-insert}. To prevent any modification of a buffer, make
1242 it read-only (@pxref{Read Only Buffers}).
1244 Since this function modifies @var{keymap}, you would normally use it
1245 on a newly created keymap. Operating on an existing keymap
1246 that is used for some other purpose is likely to cause trouble; for
1247 example, suppressing @code{global-map} would make it impossible to use
1250 Most often, @code{suppress-keymap} is used to initialize local
1251 keymaps of modes such as Rmail and Dired where insertion of text is not
1252 desirable and the buffer is read-only. Here is an example taken from
1253 the file @file{emacs/lisp/dired.el}, showing how the local keymap for
1254 Dired mode is set up:
1259 (setq dired-mode-map (make-keymap))
1260 (suppress-keymap dired-mode-map)
1261 (define-key dired-mode-map "r" 'dired-rename-file)
1262 (define-key dired-mode-map "\C-d" 'dired-flag-file-deleted)
1263 (define-key dired-mode-map "d" 'dired-flag-file-deleted)
1264 (define-key dired-mode-map "v" 'dired-view-file)
1265 (define-key dired-mode-map "e" 'dired-find-file)
1266 (define-key dired-mode-map "f" 'dired-find-file)
1272 @node Key Binding Commands
1273 @section Commands for Binding Keys
1275 This section describes some convenient interactive interfaces for
1276 changing key bindings. They work by calling @code{define-key}.
1278 People often use @code{global-set-key} in their @file{.emacs} file for
1279 simple customization. For example,
1282 (global-set-key "\C-x\C-\\" 'next-line)
1289 (global-set-key [(control ?x) (control ?\\)] 'next-line)
1296 (global-set-key [?\C-x ?\C-\\] 'next-line)
1300 redefines @kbd{C-x C-\} to move down a line.
1303 (global-set-key [(meta button1)] 'mouse-set-point)
1307 redefines the first (leftmost) mouse button, typed with the Meta key, to
1308 set point where you click.
1310 @deffn Command global-set-key key definition
1311 This function sets the binding of @var{key} in the current global map
1312 to @var{definition}.
1316 (global-set-key @var{key} @var{definition})
1318 (define-key (current-global-map) @var{key} @var{definition})
1323 @deffn Command global-unset-key key
1324 @cindex unbinding keys
1325 This function removes the binding of @var{key} from the current
1328 One use of this function is in preparation for defining a longer key
1329 that uses @var{key} as a prefix---which would not be allowed if
1330 @var{key} has a non-prefix binding. For example:
1334 (global-unset-key "\C-l")
1338 (global-set-key "\C-l\C-l" 'redraw-display)
1343 This function is implemented simply using @code{define-key}:
1347 (global-unset-key @var{key})
1349 (define-key (current-global-map) @var{key} nil)
1354 @deffn Command local-set-key key definition
1355 This function sets the binding of @var{key} in the current local
1356 keymap to @var{definition}.
1360 (local-set-key @var{key} @var{definition})
1362 (define-key (current-local-map) @var{key} @var{definition})
1367 @deffn Command local-unset-key key
1368 This function removes the binding of @var{key} from the current
1373 (local-unset-key @var{key})
1375 (define-key (current-local-map) @var{key} nil)
1380 @node Scanning Keymaps
1381 @section Scanning Keymaps
1383 This section describes functions used to scan all the current keymaps,
1384 or all keys within a keymap, for the sake of printing help information.
1386 @defun accessible-keymaps keymap &optional prefix
1387 This function returns a list of all the keymaps that can be accessed
1388 (via prefix keys) from @var{keymap}. The value is an association list
1389 with elements of the form @code{(@var{key} .@: @var{map})}, where
1390 @var{key} is a prefix key whose definition in @var{keymap} is
1393 The elements of the alist are ordered so that the @var{key} increases
1394 in length. The first element is always @code{([] .@: @var{keymap})},
1395 because the specified keymap is accessible from itself with a prefix of
1398 If @var{prefix} is given, it should be a prefix key sequence; then
1399 @code{accessible-keymaps} includes only the submaps whose prefixes start
1400 with @var{prefix}. These elements look just as they do in the value of
1401 @code{(accessible-keymaps)}; the only difference is that some elements
1404 In the example below, the returned alist indicates that the key
1405 @kbd{C-x}, which is displayed as @samp{[(control x)]}, is a prefix key
1406 whose definition is the keymap @code{#<keymap ((control x) #<keymap
1407 emacs-lisp-mode-map 8 entries 0x546>) 1 entry 0x8a2>}. (The strange
1408 notation for the keymap's name indicates that this is an internal submap
1409 of @code{emacs-lisp-mode-map}. This is because
1410 @code{lisp-interaction-mode-map} has set up @code{emacs-lisp-mode-map}
1411 as its parent, and @code{lisp-interaction-mode-map} defines no key
1412 sequences beginning with @kbd{C-x}.)
1417 @result{} #<keymap lisp-interaction-mode-map 5 entries 0x558>
1418 (accessible-keymaps (current-local-map))
1419 @result{}(([] . #<keymap lisp-interaction-mode-map 5 entries 0x558>)
1421 #<keymap ((control x) #<keymap emacs-lisp-mode-map 8 entries 0x546>)
1426 The following example shows the results of calling
1427 @code{accessible-keymaps} on a large, complex keymap. Notice how
1428 some keymaps were given explicit names using @code{set-keymap-name};
1429 those submaps without explicit names are given descriptive names
1430 indicating their relationship to their enclosing keymap.
1434 (accessible-keymaps (current-global-map))
1435 @result{} (([] . #<keymap global-map 639 entries 0x221>)
1436 ([(control c)] . #<keymap mode-specific-command-prefix 1 entry 0x3cb>)
1437 ([(control h)] . #<keymap help-map 33 entries 0x4ec>)
1438 ([(control x)] . #<keymap Control-X-prefix 77 entries 0x3bf>)
1440 #<keymap ((meta escape) #<keymap global-map 639 entries 0x221>)
1442 ([(meta control \[)] .
1443 #<keymap ((meta escape) #<keymap global-map 639 entries 0x221>)
1445 ([f1] . #<keymap help-map 33 entries 0x4ec>)
1446 ([(control x) \4] . #<keymap ctl-x-4-prefix 9 entries 0x3c5>)
1447 ([(control x) \5] . #<keymap ctl-x-5-prefix 8 entries 0x3c8>)
1448 ([(control x) \6] . #<keymap 13 entries 0x4d2>)
1450 #<keymap (a #<keymap Control-X-prefix 77 entries 0x3bf>)
1452 ([(control x) n] . #<keymap narrowing-prefix 3 entries 0x3dd>)
1453 ([(control x) r] . #<keymap rectangle-prefix 18 entries 0x3e9>)
1454 ([(control x) v] . #<keymap vc-prefix-map 13 entries 0x60e>)
1455 ([(control x) a i] .
1456 #<keymap (i #<keymap (a #<keymap Control-X-prefix 77 entries 0x3bf>)
1463 @defun map-keymap function keymap &optional sort-first
1464 This function applies @var{function} to each element of @var{keymap}.
1465 @var{function} will be called with two arguments: a key-description
1466 list, and the binding. The order in which the elements of the keymap
1467 are passed to the function is unspecified. If the function inserts new
1468 elements into the keymap, it may or may not be called with them later.
1469 No element of the keymap will ever be passed to the function more than
1472 The function will not be called on elements of this keymap's parents
1473 (@pxref{Inheritance and Keymaps}) or upon keymaps which are contained
1474 within this keymap (multi-character definitions). It will be called on
1475 @key{META} characters since they are not really two-character sequences.
1477 If the optional third argument @var{sort-first} is non-@code{nil}, then
1478 the elements of the keymap will be passed to the mapper function in a
1479 canonical order. Otherwise, they will be passed in hash (that is,
1480 random) order, which is faster.
1483 @defun keymap-fullness keymap
1484 This function returns the number of bindings in the keymap.
1487 @defun where-is-internal definition &optional keymaps firstonly noindirect event-or-keys
1488 This function returns a list of key sequences (of any length) that are
1489 bound to @var{definition} in a set of keymaps.
1491 The argument @var{definition} can be any object; it is compared with all
1492 keymap entries using @code{eq}.
1494 @var{keymaps} can be either a keymap (meaning search in that keymap and the
1495 current global keymap) or a list of keymaps (meaning search in exactly
1496 those keymaps and no others). If @var{keymaps} is nil, search in the currently
1497 applicable maps for @var{event-or-keys}.
1499 If @var{keymaps} is a keymap, then the maps searched are @var{keymaps} and
1500 the global keymap. If @var{keymaps} is a list of keymaps, then the maps
1501 searched are exactly those keymaps, and no others. If @var{keymaps} is
1502 @code{nil}, then the maps used are the current active keymaps for
1503 @var{event-or-keys} (this is equivalent to specifying
1504 @code{(current-keymaps @var{event-or-keys})} as the argument to
1507 If @var{firstonly} is non-@code{nil}, then the value is a single
1508 vector representing the first key sequence found, rather than a list of
1509 all possible key sequences.
1510 @ignore @c #### Should fix where-is to be more like FSF
1511 If @var{firstonly} is @code{non-ascii}, then the value is a single
1512 string representing the first key sequence found, rather than a list of
1513 all possible key sequences. If @var{firstonly} is @code{t}, then the
1514 value is the first key sequence, except that key sequences consisting
1515 entirely of @sc{ascii} characters (or meta variants of @sc{ascii}
1516 characters) are preferred to all other key sequences.
1519 If @var{noindirect} is non-@code{nil}, @code{where-is-internal} doesn't
1520 follow indirect keymap bindings. This makes it possible to search for
1521 an indirect definition itself.
1523 This function is used by @code{where-is} (@pxref{Help, , Help, xemacs,
1524 The XEmacs Lisp Reference Manual}).
1528 (where-is-internal 'describe-function)
1529 @result{} ([(control h) d] [(control h) f] [f1 d] [f1 f])
1534 @defun describe-bindings-internal map &optional all shadow prefix mouse-only-p
1535 This function inserts (into the current buffer) a list of all defined
1536 keys and their definitions in @var{map}. Optional second argument
1537 @var{all} says whether to include even ``uninteresting'' definitions,
1538 i.e. symbols with a non-@code{nil} @code{suppress-keymap} property.
1539 Third argument @var{shadow} is a list of keymaps whose bindings shadow
1540 those of map; if a binding is present in any shadowing map, it is not
1541 printed. Fourth argument @var{prefix}, if non-@code{nil}, should be a
1542 key sequence; only bindings which start with that key sequence will be
1543 printed. Fifth argument @var{mouse-only-p} says to only print bindings
1547 @code{describe-bindings-internal} is used to implement the
1548 help command @code{describe-bindings}.
1550 @deffn Command describe-bindings &optional prefix mouse-only-p
1551 This function creates a listing of all defined keys and their
1552 definitions. It writes the listing in a buffer named @samp{*Help*} and
1553 displays it in a window.
1555 If optional argument @var{prefix} is non-@code{nil}, it should be a
1556 prefix key; then the listing includes only keys that start with
1559 When several characters with consecutive @sc{ascii} codes have the
1560 same definition, they are shown together, as
1561 @samp{@var{firstchar}..@var{lastchar}}. In this instance, you need to
1562 know the @sc{ascii} codes to understand which characters this means.
1563 For example, in the default global map, the characters @samp{@key{SPC}
1564 ..@: ~} are described by a single line. @key{SPC} is @sc{ascii} 32,
1565 @kbd{~} is @sc{ascii} 126, and the characters between them include all
1566 the normal printing characters, (e.g., letters, digits, punctuation,
1567 etc.@:); all these characters are bound to @code{self-insert-command}.
1569 If the second optional argument @var{mouse-only-p} (prefix arg,
1570 interactively) is non-@code{nil} then only the mouse bindings are
1574 @node Other Keymap Functions
1575 @section Other Keymap Functions
1577 @defun set-keymap-prompt keymap new-prompt
1578 This function sets the ``prompt'' of @var{keymap} to string
1579 @var{new-prompt}, or @code{nil} if no prompt is desired. The prompt is
1580 shown in the echo-area when reading a key-sequence to be looked-up in
1584 @defun keymap-prompt keymap &optional use-inherited
1585 This function returns the ``prompt'' of the given keymap.
1586 If @var{use-inherited} is non-@code{nil}, any parent keymaps
1587 will also be searched for a prompt.