* FOR-RELEASE: Key sequence elisp node done.
[bpt/emacs.git] / lispref / keymaps.texi
CommitLineData
73804d4b
RS
1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual.
651f374c 3@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1998, 1999, 2000, 2002, 2003,
ceb4c4d3 4@c 2004, 2005, 2006 Free Software Foundation, Inc.
73804d4b
RS
5@c See the file elisp.texi for copying conditions.
6@setfilename ../info/keymaps
7@node Keymaps, Modes, Command Loop, Top
8@chapter Keymaps
9@cindex keymap
10
11 The bindings between input events and commands are recorded in data
12structures called @dfn{keymaps}. Each binding in a keymap associates
8a36c244 13(or @dfn{binds}) an individual event type, either to another keymap or to
f9f59935
RS
14a command. When an event type is bound to a keymap, that keymap is used
15to look up the next input event; this continues until a command is
16found. The whole process is called @dfn{key lookup}.
73804d4b
RS
17
18@menu
08244b81 19* Key Sequences:: What a key sequence looks like as a Lisp object.
73804d4b
RS
20* Format of Keymaps:: What a keymap looks like as a Lisp object.
21* Creating Keymaps:: Functions to create and copy keymaps.
22* Inheritance and Keymaps:: How one keymap can inherit the bindings
23 of another keymap.
24* Prefix Keys:: Defining a key with a keymap as its definition.
59e58738
RS
25* Active Keymaps:: How Emacs searches the active keymaps
26 for a key binding.
27* Searching Keymaps:: A pseudo-Lisp summary of searching active maps.
28* Controlling Active Maps:: Each buffer has a local keymap
73804d4b
RS
29 to override the standard (global) bindings.
30 A minor mode can also override them.
59e58738 31* Key Lookup:: Finding a key's binding in one keymap.
73804d4b
RS
32* Functions for Key Lookup:: How to request key lookup.
33* Changing Key Bindings:: Redefining a key in a keymap.
229644e7 34* Remapping Commands:: Bindings that translate one command to another.
73804d4b
RS
35* Key Binding Commands:: Interactive interfaces for redefining keys.
36* Scanning Keymaps:: Looking through all keymaps, for printing help.
f9f59935 37* Menu Keymaps:: Defining a menu as a keymap.
73804d4b
RS
38@end menu
39
08244b81
CY
40@node Key Sequences
41@section Key Sequences
73804d4b
RS
42@cindex key
43@cindex keystroke
44@cindex key binding
45@cindex binding of a key
46@cindex complete key
47@cindex undefined key
08244b81 48@cindex key sequence
73804d4b 49
08244b81
CY
50 A keymap determines a binding or definition for a set of @dfn{key
51sequences}, or @dfn{keys} for short. A key sequence is a sequence of
52one or more input events that form a unit.
73804d4b 53
08244b81
CY
54 If a keymap binds a key sequence consisting of a single event, its
55binding is the definition of that event. The binding of a key
56sequence of more than one event is found by an iterative process: the
57binding of the first event is found, and must be a keymap; then the
58second event's binding is found in that keymap, and so on until all
59the events in the key sequence are used up.
73804d4b
RS
60
61 If the binding of a key sequence is a keymap, we call the key sequence
62a @dfn{prefix key}. Otherwise, we call it a @dfn{complete key} (because
87b2d5ff 63no more events can be added to it). If the binding is @code{nil},
73804d4b
RS
64we call the key @dfn{undefined}. Examples of prefix keys are @kbd{C-c},
65@kbd{C-x}, and @kbd{C-x 4}. Examples of defined complete keys are
66@kbd{X}, @key{RET}, and @kbd{C-x 4 C-f}. Examples of undefined complete
67keys are @kbd{C-x C-g}, and @kbd{C-c 3}. @xref{Prefix Keys}, for more
68details.
69
70 The rule for finding the binding of a key sequence assumes that the
71intermediate bindings (found for the events before the last) are all
72keymaps; if this is not so, the sequence of events does not form a
f9f59935
RS
73unit---it is not really one key sequence. In other words, removing one
74or more events from the end of any valid key sequence must always yield
75a prefix key. For example, @kbd{C-f C-n} is not a key sequence;
76@kbd{C-f} is not a prefix key, so a longer sequence starting with
77@kbd{C-f} cannot be a key sequence.
78
79 The set of possible multi-event key sequences depends on the bindings
80for prefix keys; therefore, it can be different for different keymaps,
81and can change when bindings are changed. However, a one-event sequence
82is always a key sequence, because it does not depend on any prefix keys
83for its well-formedness.
73804d4b 84
39a9bed3
CY
85 A key sequence can be represented in Emacs Lisp as either a string
86or vector. Unless otherwise stated, any Emacs Lisp function that
87accepts a key sequence as an argument can handle both representations.
08244b81
CY
88
89 In the string representation, alphanumeric characters ordinarily
90stand for themselves; for example, @code{"a"} represents @key{a} and
39a9bed3 91and @code{"2"} represents @key{2}. Control character events are
08244b81
CY
92prefixed by the substring @code{"\C-"}, and meta characters by
93@code{"\M-"}; for example, @code{"\C-x"} represents the key @kbd{C-x}.
94In addition, the @kbd{<TAB>}, @kbd{<RET>}, @kbd{<ESC>}, and
95@kbd{<DEL>} events are represented by @code{"\t"}, @code{"\r"},
96@code{"\e"}, and @code{"\d"} respectively. The string representation
97of a complete key sequence is then obtained by concatenating the
39a9bed3
CY
98string representations of each constituent event; thus, @code{"\C-xl"}
99represents the key sequence @kbd{C-x l}.
08244b81
CY
100
101 Key sequences containing function keys, mouse button events, or
102non-ASCII characters such as @kbd{C-=} or @kbd{H-a} cannot be
39a9bed3 103represented by strings; they have to be represented by vectors.
08244b81
CY
104
105 In the vector representation, each element of the vector represents
106a consecutive input element, in its Lisp form. @xref{Input Events}.
39a9bed3
CY
107For example, the vector @code{[?\C-x ?l]} represents the key sequence
108@kbd{C-x l}.
109
110 For examples of key sequences written in string and vector
111representations, @ref{Init Rebinding,,, emacs, The GNU Emacs Manual}.
112
113 The @code{kbd} macro provides a convenient way to generate an Emacs
114Lisp key sequence:
402fe423
RS
115
116@defmac kbd keyseq-text
117This macro converts the text @var{keyseq-text} (a string constant)
118into a key sequence (a string or vector constant). The contents
119of @var{keyseq-text} should describe the key sequence using the syntax
db8af011
LT
120used in this manual. More precisely, it uses the same syntax that
121Edit Macro mode uses for editing keyboard macros (@pxref{Edit Keyboard
122Macro,,, emacs, The GNU Emacs Manual}).
402fe423
RS
123
124@example
125(kbd "C-x") @result{} "\C-x"
126(kbd "C-x C-f") @result{} "\C-x\C-f"
402fe423
RS
127(kbd "C-x 4 C-f") @result{} "\C-x4\C-f"
128(kbd "X") @result{} "X"
129(kbd "RET") @result{} "\^M"
db8af011
LT
130(kbd "C-c SPC") @result{} "\C-c@ "
131(kbd "<f1> SPC") @result{} [f1 32]
132(kbd "C-M-<down>") @result{} [C-M-down]
402fe423
RS
133@end example
134@end defmac
135
73804d4b
RS
136@node Format of Keymaps
137@section Format of Keymaps
138@cindex format of keymaps
139@cindex keymap format
140@cindex full keymap
141@cindex sparse keymap
142
08244b81
CY
143 A @dfn{keymap} is a table mapping event types to definitions (which
144can be any Lisp objects, though only certain types are meaningful for
145execution by the command loop). Given an event (or an event type) and a
146keymap, Emacs can get the event's definition. Events include
147characters, function keys, and mouse actions (@pxref{Input Events}).
148
39a9bed3
CY
149 At any time, several primary keymaps are @dfn{active}---that is, in
150use for finding key bindings. These are the @dfn{global map}, which is
151shared by all buffers; the @dfn{local keymap}, which is usually
152associated with a specific major mode; and zero or more @dfn{minor mode
153keymaps}, which belong to currently enabled minor modes. (Not all minor
154modes have keymaps.) The local keymap bindings shadow (i.e., take
155precedence over) the corresponding global bindings. The minor mode
156keymaps shadow both local and global keymaps. @xref{Active Keymaps},
157for details.
158
08244b81 159 Each keymap is a list whose @sc{car} is the symbol @code{keymap}. The
73804d4b 160remaining elements of the list define the key bindings of the keymap.
aa2ac20c
RS
161A symbol whose function definition is a keymap is also a keymap. Use
162the function @code{keymapp} (see below) to test whether an object is a
163keymap.
73804d4b 164
f9f59935
RS
165 Several kinds of elements may appear in a keymap, after the symbol
166@code{keymap} that begins it:
87b2d5ff 167
f9f59935
RS
168@table @code
169@item (@var{type} .@: @var{binding})
170This specifies one binding, for events of type @var{type}. Each
171ordinary binding applies to events of a particular @dfn{event type},
172which is always a character or a symbol. @xref{Classifying Events}.
73804d4b 173
f9f59935 174@item (t .@: @var{binding})
73804d4b 175@cindex default key binding
f9f59935
RS
176This specifies a @dfn{default key binding}; any event not bound by other
177elements of the keymap is given @var{binding} as its binding. Default
178bindings allow a keymap to bind all possible event types without having
179to enumerate all of them. A keymap that has a default binding
db8af011
LT
180completely masks any lower-precedence keymap, except for events
181explicitly bound to @code{nil} (see below).
f9f59935 182
229644e7
RS
183@item @var{char-table}
184If an element of a keymap is a char-table, it counts as holding
185bindings for all character events with no modifier bits
186(@pxref{modifier bits}): element @var{n} is the binding for the
187character with code @var{n}. This is a compact way to record lots of
188bindings. A keymap with such a char-table is called a @dfn{full
189keymap}. Other keymaps are called @dfn{sparse keymaps}.
190
f9f59935 191@item @var{string}
73804d4b
RS
192@cindex keymap prompt string
193@cindex overall prompt string
194@cindex prompt string of keymap
f9f59935 195Aside from bindings, a keymap can also have a string as an element.
73804d4b 196This is called the @dfn{overall prompt string} and makes it possible to
e465fdc2 197use the keymap as a menu. @xref{Defining Menus}.
f9f59935 198@end table
73804d4b 199
d64b177a
SM
200When the binding is @code{nil}, it doesn't constitute a definition
201but it does take precedence over a default binding or a binding in the
202parent keymap. On the other hand, a binding of @code{nil} does
203@emph{not} override lower-precedence keymaps; thus, if the local map
204gives a binding of @code{nil}, Emacs uses the binding from the
205global map.
206
73804d4b 207@cindex meta characters lookup
f9f59935 208 Keymaps do not directly record bindings for the meta characters.
5f1f5955
GM
209Instead, meta characters are regarded for purposes of key lookup as
210sequences of two characters, the first of which is @key{ESC} (or
211whatever is currently the value of @code{meta-prefix-char}). Thus, the
212key @kbd{M-a} is internally represented as @kbd{@key{ESC} a}, and its
213global binding is found at the slot for @kbd{a} in @code{esc-map}
214(@pxref{Prefix Keys}).
215
216 This conversion applies only to characters, not to function keys or
217other input events; thus, @kbd{M-@key{end}} has nothing to do with
218@kbd{@key{ESC} @key{end}}.
73804d4b
RS
219
220 Here as an example is the local keymap for Lisp mode, a sparse
221keymap. It defines bindings for @key{DEL} and @key{TAB}, plus @kbd{C-c
222C-l}, @kbd{M-C-q}, and @kbd{M-C-x}.
223
224@example
225@group
226lisp-mode-map
177c0ea7 227@result{}
73804d4b
RS
228@end group
229@group
177c0ea7 230(keymap
8a36c244
RS
231 (3 keymap
232 ;; @kbd{C-c C-z}
233 (26 . run-lisp))
73804d4b
RS
234@end group
235@group
8a36c244
RS
236 (27 keymap
237 ;; @r{@kbd{M-C-x}, treated as @kbd{@key{ESC} C-x}}
238 (24 . lisp-send-defun)
239 keymap
240 ;; @r{@kbd{M-C-q}, treated as @kbd{@key{ESC} C-q}}
241 (17 . indent-sexp)))
73804d4b
RS
242@end group
243@group
8a36c244
RS
244 ;; @r{This part is inherited from @code{lisp-mode-shared-map}.}
245 keymap
246 ;; @key{DEL}
247 (127 . backward-delete-char-untabify)
73804d4b
RS
248@end group
249@group
177c0ea7 250 (27 keymap
73804d4b 251 ;; @r{@kbd{M-C-q}, treated as @kbd{@key{ESC} C-q}}
8a36c244
RS
252 (17 . indent-sexp))
253 (9 . lisp-indent-line))
73804d4b
RS
254@end group
255@end example
256
257@defun keymapp object
258This function returns @code{t} if @var{object} is a keymap, @code{nil}
87b2d5ff 259otherwise. More precisely, this function tests for a list whose
aa2ac20c
RS
260@sc{car} is @code{keymap}, or for a symbol whose function definition
261satisfies @code{keymapp}.
73804d4b
RS
262
263@example
264@group
265(keymapp '(keymap))
266 @result{} t
267@end group
268@group
aa2ac20c
RS
269(fset 'foo '(keymap))
270(keymapp 'foo)
271 @result{} t
272@end group
273@group
73804d4b
RS
274(keymapp (current-global-map))
275 @result{} t
276@end group
277@end example
278@end defun
279
280@node Creating Keymaps
281@section Creating Keymaps
282@cindex creating keymaps
283
284 Here we describe the functions for creating keymaps.
285
171920a6
RS
286@defun make-sparse-keymap &optional prompt
287This function creates and returns a new sparse keymap with no entries.
288(A sparse keymap is the kind of keymap you usually want.) The new
289keymap does not contain a char-table, unlike @code{make-keymap}, and
290does not bind any events.
73804d4b
RS
291
292@example
293@group
171920a6
RS
294(make-sparse-keymap)
295 @result{} (keymap)
73804d4b
RS
296@end group
297@end example
298
299If you specify @var{prompt}, that becomes the overall prompt string for
b08d86c6 300the keymap. The prompt string should be provided for menu keymaps
e465fdc2 301(@pxref{Defining Menus}).
73804d4b
RS
302@end defun
303
171920a6
RS
304@defun make-keymap &optional prompt
305This function creates and returns a new full keymap. That keymap
306contains a char-table (@pxref{Char-Tables}) with slots for all
307characters without modifiers. The new keymap initially binds all
308these characters to @code{nil}, and does not bind any other kind of
309event. The argument @var{prompt} specifies a
310prompt string, as in @code{make-sparse-keymap}.
73804d4b
RS
311
312@example
313@group
171920a6
RS
314(make-keymap)
315 @result{} (keymap #^[t nil nil nil @dots{} nil nil keymap])
73804d4b
RS
316@end group
317@end example
171920a6
RS
318
319A full keymap is more efficient than a sparse keymap when it holds
320lots of bindings; for just a few, the sparse keymap is better.
73804d4b
RS
321@end defun
322
323@defun copy-keymap keymap
87b2d5ff 324This function returns a copy of @var{keymap}. Any keymaps that
73804d4b
RS
325appear directly as bindings in @var{keymap} are also copied recursively,
326and so on to any number of levels. However, recursive copying does not
327take place when the definition of a character is a symbol whose function
328definition is a keymap; the same symbol appears in the new copy.
329@c Emacs 19 feature
330
331@example
332@group
333(setq map (copy-keymap (current-local-map)))
334@result{} (keymap
335@end group
336@group
337 ;; @r{(This implements meta characters.)}
177c0ea7 338 (27 keymap
73804d4b
RS
339 (83 . center-paragraph)
340 (115 . center-line))
341 (9 . tab-to-tab-stop))
342@end group
343
344@group
345(eq map (current-local-map))
346 @result{} nil
347@end group
348@group
349(equal map (current-local-map))
350 @result{} t
351@end group
352@end example
353@end defun
354
355@node Inheritance and Keymaps
356@section Inheritance and Keymaps
357@cindex keymap inheritance
358@cindex inheriting a keymap's bindings
359
0521d6f5
RS
360 A keymap can inherit the bindings of another keymap, which we call the
361@dfn{parent keymap}. Such a keymap looks like this:
73804d4b
RS
362
363@example
0521d6f5 364(keymap @var{bindings}@dots{} . @var{parent-keymap})
73804d4b
RS
365@end example
366
367@noindent
368The effect is that this keymap inherits all the bindings of
0521d6f5 369@var{parent-keymap}, whatever they may be at the time a key is looked up,
73804d4b
RS
370but can add to them or override them with @var{bindings}.
371
0521d6f5 372If you change the bindings in @var{parent-keymap} using @code{define-key}
73804d4b
RS
373or other key-binding functions, these changes are visible in the
374inheriting keymap unless shadowed by @var{bindings}. The converse is
375not true: if you use @code{define-key} to change the inheriting keymap,
0521d6f5
RS
376that affects @var{bindings}, but has no effect on @var{parent-keymap}.
377
378The proper way to construct a keymap with a parent is to use
379@code{set-keymap-parent}; if you have code that directly constructs a
380keymap with a parent, please convert the program to use
381@code{set-keymap-parent} instead.
382
383@defun keymap-parent keymap
384This returns the parent keymap of @var{keymap}. If @var{keymap}
385has no parent, @code{keymap-parent} returns @code{nil}.
386@end defun
387
388@defun set-keymap-parent keymap parent
389This sets the parent keymap of @var{keymap} to @var{parent}, and returns
390@var{parent}. If @var{parent} is @code{nil}, this function gives
391@var{keymap} no parent at all.
392
393If @var{keymap} has submaps (bindings for prefix keys), they too receive
394new parent keymaps that reflect what @var{parent} specifies for those
395prefix keys.
396@end defun
73804d4b 397
6a0f8bed 398 Here is an example showing how to make a keymap that inherits
73804d4b
RS
399from @code{text-mode-map}:
400
401@example
0521d6f5
RS
402(let ((map (make-sparse-keymap)))
403 (set-keymap-parent map text-mode-map)
404 map)
73804d4b
RS
405@end example
406
6a0f8bed
RS
407 A non-sparse keymap can have a parent too, but this is not very
408useful. A non-sparse keymap always specifies something as the binding
409for every numeric character code without modifier bits, even if it is
410@code{nil}, so these character's bindings are never inherited from
411the parent keymap.
412
73804d4b
RS
413@node Prefix Keys
414@section Prefix Keys
415@cindex prefix key
416
f9f59935 417 A @dfn{prefix key} is a key sequence whose binding is a keymap. The
969fe9b5 418keymap defines what to do with key sequences that extend the prefix key.
f9f59935
RS
419For example, @kbd{C-x} is a prefix key, and it uses a keymap that is
420also stored in the variable @code{ctl-x-map}. This keymap defines
421bindings for key sequences starting with @kbd{C-x}.
422
1911e6e5
RS
423 Some of the standard Emacs prefix keys use keymaps that are
424also found in Lisp variables:
73804d4b
RS
425
426@itemize @bullet
427@item
428@vindex esc-map
429@findex ESC-prefix
f9f59935
RS
430@code{esc-map} is the global keymap for the @key{ESC} prefix key. Thus,
431the global definitions of all meta characters are actually found here.
432This map is also the function definition of @code{ESC-prefix}.
73804d4b
RS
433
434@item
435@cindex @kbd{C-h}
a9f0a989 436@code{help-map} is the global keymap for the @kbd{C-h} prefix key.
73804d4b
RS
437
438@item
439@cindex @kbd{C-c}
440@vindex mode-specific-map
f9f59935
RS
441@code{mode-specific-map} is the global keymap for the prefix key
442@kbd{C-c}. This map is actually global, not mode-specific, but its name
443provides useful information about @kbd{C-c} in the output of @kbd{C-h b}
444(@code{display-bindings}), since the main use of this prefix key is for
445mode-specific bindings.
73804d4b
RS
446
447@item
448@cindex @kbd{C-x}
449@vindex ctl-x-map
450@findex Control-X-prefix
a9f0a989
RS
451@code{ctl-x-map} is the global keymap used for the @kbd{C-x} prefix key.
452This map is found via the function cell of the symbol
f9f59935 453@code{Control-X-prefix}.
73804d4b 454
1911e6e5
RS
455@item
456@cindex @kbd{C-x @key{RET}}
457@vindex mule-keymap
458@code{mule-keymap} is the global keymap used for the @kbd{C-x @key{RET}}
459prefix key.
460
73804d4b
RS
461@item
462@cindex @kbd{C-x 4}
463@vindex ctl-x-4-map
f9f59935
RS
464@code{ctl-x-4-map} is the global keymap used for the @kbd{C-x 4} prefix
465key.
73804d4b
RS
466
467@c Emacs 19 feature
468@item
469@cindex @kbd{C-x 5}
470@vindex ctl-x-5-map
f9f59935
RS
471@code{ctl-x-5-map} is the global keymap used for the @kbd{C-x 5} prefix
472key.
73804d4b
RS
473
474@c Emacs 19 feature
475@item
1911e6e5
RS
476@cindex @kbd{C-x 6}
477@vindex 2C-mode-map
478@code{2C-mode-map} is the global keymap used for the @kbd{C-x 6} prefix
479key.
480
481@item
482@cindex @kbd{C-x v}
483@vindex vc-prefix-map
484@code{vc-prefix-map} is the global keymap used for the @kbd{C-x v} prefix
485key.
486
487@item
f141c9bb 488@cindex @kbd{M-o}
1911e6e5 489@vindex facemenu-keymap
f141c9bb 490@code{facemenu-keymap} is the global keymap used for the @kbd{M-o}
1911e6e5
RS
491prefix key.
492
493@c Emacs 19 feature
494@item
c5568a11
LT
495The other Emacs prefix keys are @kbd{M-g}, @kbd{C-x @@}, @kbd{C-x a i},
496@kbd{C-x @key{ESC}} and @kbd{@key{ESC} @key{ESC}}. They use keymaps
497that have no special names.
73804d4b
RS
498@end itemize
499
f9f59935
RS
500 The keymap binding of a prefix key is used for looking up the event
501that follows the prefix key. (It may instead be a symbol whose function
502definition is a keymap. The effect is the same, but the symbol serves
503as a name for the prefix key.) Thus, the binding of @kbd{C-x} is the
a9f0a989 504symbol @code{Control-X-prefix}, whose function cell holds the keymap
f9f59935 505for @kbd{C-x} commands. (The same keymap is also the value of
73804d4b
RS
506@code{ctl-x-map}.)
507
87b2d5ff
RS
508 Prefix key definitions can appear in any active keymap. The
509definitions of @kbd{C-c}, @kbd{C-x}, @kbd{C-h} and @key{ESC} as prefix
510keys appear in the global map, so these prefix keys are always
73804d4b
RS
511available. Major and minor modes can redefine a key as a prefix by
512putting a prefix key definition for it in the local map or the minor
513mode's map. @xref{Active Keymaps}.
514
515 If a key is defined as a prefix in more than one active map, then its
516various definitions are in effect merged: the commands defined in the
517minor mode keymaps come first, followed by those in the local map's
518prefix definition, and then by those from the global map.
519
520 In the following example, we make @kbd{C-p} a prefix key in the local
521keymap, in such a way that @kbd{C-p} is identical to @kbd{C-x}. Then
522the binding for @kbd{C-p C-f} is the function @code{find-file}, just
523like @kbd{C-x C-f}. The key sequence @kbd{C-p 6} is not found in any
524active keymap.
525
526@example
527@group
528(use-local-map (make-sparse-keymap))
529 @result{} nil
530@end group
531@group
532(local-set-key "\C-p" ctl-x-map)
533 @result{} nil
534@end group
535@group
536(key-binding "\C-p\C-f")
537 @result{} find-file
538@end group
539
540@group
541(key-binding "\C-p6")
542 @result{} nil
543@end group
544@end example
545
b6954afd 546@defun define-prefix-command symbol &optional mapvar prompt
73804d4b 547@cindex prefix command
db8af011 548@anchor{Definition of define-prefix-command}
f9f59935 549This function prepares @var{symbol} for use as a prefix key's binding:
62f20204 550it creates a sparse keymap and stores it as @var{symbol}'s function
f9f59935 551definition. Subsequently binding a key sequence to @var{symbol} will
b6954afd 552make that key sequence into a prefix key. The return value is @code{symbol}.
f9f59935
RS
553
554This function also sets @var{symbol} as a variable, with the keymap as
b6954afd
RS
555its value. But if @var{mapvar} is non-@code{nil}, it sets @var{mapvar}
556as a variable instead.
f9f59935 557
b6954afd 558If @var{prompt} is non-@code{nil}, that becomes the overall prompt
b08d86c6 559string for the keymap. The prompt string should be given for menu keymaps
e465fdc2 560(@pxref{Defining Menus}).
73804d4b
RS
561@end defun
562
87b2d5ff
RS
563@node Active Keymaps
564@section Active Keymaps
565@cindex active keymap
566@cindex global keymap
567@cindex local keymap
73804d4b 568
d38edfc3 569 Emacs normally contains many keymaps; at any given time, just a few
59e58738 570of them are @dfn{active}, meaning that they participate in the
d38edfc3
RS
571interpretation of user input. All the active keymaps are used
572together to determine what command to execute when a key is entered.
573Emacs searches these keymaps one by one, in a standard order, until it
59e58738 574finds a binding in one of the keymaps.
d38edfc3
RS
575
576 Normally the active keymaps are the @code{keymap} property keymap,
577the keymaps of any enabled minor modes, the current buffer's local
578keymap, and the global keymap, in that order. Therefore, Emacs
59e58738
RS
579searches for each input key sequence in all these keymaps. Here is a
580pseudo-Lisp description of how this process works:
581
582@lisp
583(or (if overriding-terminal-local-map
584 (@var{find-in} overriding-terminal-local-map)
585 (if overriding-local-map
586 (@var{find-in} overriding-local-map)
587 (or (@var{find-in} (get-text-property (point) 'keymap))
588 (@var{find-in-any} emulation-mode-map-alists)
589 (@var{find-in-any} minor-mode-overriding-map-alist)
590 (@var{find-in-any} minor-mode-map-alist)
e98a14ff 591 (if (get-text-property (point) 'local-map)
59e58738
RS
592 (@var{find-in} (get-text-property (point) 'local-map))
593 (@var{find-in} (current-local-map))))))
594 (@var{find-in} (current-global-map)))
595@end lisp
596
597@noindent
598Here, the pseudo-function @var{find-in} means to look up the key
599sequence in a single map, and @var{find-in-any} means to search the
600appropriate keymaps from an alist. (Searching a single keymap for a
601binding is called @dfn{key lookup}; see @ref{Key Lookup}.)
73804d4b 602
87b2d5ff
RS
603 The @dfn{global keymap} holds the bindings of keys that are defined
604regardless of the current buffer, such as @kbd{C-f}. The variable
605@code{global-map} holds this keymap, which is always active.
73804d4b 606
d38edfc3
RS
607 Each buffer may have another keymap, its @dfn{local keymap}, which
608may contain new or overriding definitions for keys. The current
609buffer's local keymap is always active except when
610@code{overriding-local-map} overrides it. The @code{local-map} text
611or overlay property can specify an alternative local keymap for certain
612parts of the buffer; see @ref{Special Properties}.
73804d4b 613
a9f0a989 614 Each minor mode can have a keymap; if it does, the keymap is active
d38edfc3
RS
615when the minor mode is enabled. Modes for emulation can specify
616additional active keymaps through the variable
617@code{emulation-mode-map-alists}.
618
8ed9e36a 619 The highest precedence normal keymap comes from the @code{keymap}
d38edfc3
RS
620text or overlay property. If that is non-@code{nil}, it is the first
621keymap to be processed, in normal circumstances.
622
7fdc81ab 623 However, there are also special ways for programs to substitute
8a36c244 624other keymaps for some of those. The variable
d38edfc3
RS
625@code{overriding-local-map}, if non-@code{nil}, specifies a keymap
626that replaces all the usual active keymaps except the global keymap.
627Another way to do this is with @code{overriding-terminal-local-map};
628it operates on a per-terminal basis. These variables are documented
629below.
73804d4b 630
87b2d5ff
RS
631@cindex major mode keymap
632 Since every buffer that uses the same major mode normally uses the
633same local keymap, you can think of the keymap as local to the mode. A
634change to the local keymap of a buffer (using @code{local-set-key}, for
635example) is seen also in the other buffers that share that keymap.
73804d4b 636
969fe9b5 637 The local keymaps that are used for Lisp mode and some other major
d38edfc3 638modes exist even if they have not yet been used. These local keymaps are
969fe9b5
RS
639the values of variables such as @code{lisp-mode-map}. For most major
640modes, which are less frequently used, the local keymap is constructed
641only when the mode is used for the first time in a session.
73804d4b 642
87b2d5ff
RS
643 The minibuffer has local keymaps, too; they contain various completion
644and exit commands. @xref{Intro to Minibuffers}.
73804d4b 645
a9f0a989
RS
646 Emacs has other keymaps that are used in a different way---translating
647events within @code{read-key-sequence}. @xref{Translating Input}.
648
87b2d5ff 649 @xref{Standard Keymaps}, for a list of standard keymaps.
73804d4b 650
59e58738
RS
651@defun current-active-maps &optional olp
652This returns the list of active keymaps that would be used by the
653command loop in the current circumstances to look up a key sequence.
654Normally it ignores @code{overriding-local-map} and
655@code{overriding-terminal-local-map}, but if @var{olp} is
656non-@code{nil} then it pays attention to them.
657@end defun
658
659@defun key-binding key &optional accept-defaults no-remap
660This function returns the binding for @var{key} according to the
661current active keymaps. The result is @code{nil} if @var{key} is
662undefined in the keymaps.
663
664@c Emacs 19 feature
665The argument @var{accept-defaults} controls checking for default
666bindings, as in @code{lookup-key} (above).
667
668When commands are remapped (@pxref{Remapping Commands}),
669@code{key-binding} normally processes command remappings so as to
670returns the remapped command that will actually be executed. However,
671if @var{no-remap} is non-@code{nil}, @code{key-binding} ignores
672remappings and returns the binding directly specified for @var{key}.
673
674An error is signaled if @var{key} is not a string or a vector.
675
676@example
677@group
678(key-binding "\C-x\C-f")
679 @result{} find-file
680@end group
681@end example
682@end defun
683
684@node Searching Keymaps
685@section Searching the Active Keymaps
686
687 After translation of the input events (@pxref{Translating Input})
688Emacs looks for them in the active keymaps. Here is a pseudo-Lisp
689description of the order in which the active keymaps are searched:
690
691@lisp
692(or (if overriding-terminal-local-map
693 (@var{find-in} overriding-terminal-local-map)
694 (if overriding-local-map
695 (@var{find-in} overriding-local-map)
696 (or (@var{find-in} (get-text-property (point) 'keymap))
697 (@var{find-in-any} emulation-mode-map-alists)
698 (@var{find-in-any} minor-mode-overriding-map-alist)
699 (@var{find-in-any} minor-mode-map-alist)
e98a14ff
EZ
700 (if (get-text-property (point) 'local-map)
701 (@var{find-in} (get-text-property (point) 'local-map))
702 (@var{find-in} (current-local-map))))))
59e58738
RS
703 (@var{find-in} (current-global-map)))
704@end lisp
705
706@noindent
707The @var{find-in} and @var{find-in-any} are pseudo functions that
e98a14ff 708search in one keymap and in an alist of keymaps, respectively.
59e58738
RS
709
710@enumerate
711@item
712The function finally found may be remapped
713(@pxref{Remapping Commands}).
714
715@item
716Characters that are bound to @code{self-insert-command} are translated
717according to @code{translation-table-for-input} before insertion.
718
719@item
720@code{current-active-maps} returns a list of the
721currently active keymaps at point.
722
723@item
724When a match is found (@pxref{Key Lookup}), if the binding in the
725keymap is a function, the search is over. However if the keymap entry
726is a symbol with a value or a string, Emacs replaces the input key
727sequences with the variable's value or the string, and restarts the
728search of the active keymaps.
729@end enumerate
730
731@node Controlling Active Maps
732@section Controlling the Active Keymaps
733
87b2d5ff
RS
734@defvar global-map
735This variable contains the default global keymap that maps Emacs
59e58738
RS
736keyboard input to commands. The global keymap is normally this
737keymap. The default global keymap is a full keymap that binds
87b2d5ff 738@code{self-insert-command} to all of the printing characters.
73804d4b 739
d38edfc3 740It is normal practice to change the bindings in the global keymap, but you
87b2d5ff
RS
741should not assign this variable any value other than the keymap it starts
742out with.
743@end defvar
73804d4b 744
87b2d5ff
RS
745@defun current-global-map
746This function returns the current global keymap. This is the
747same as the value of @code{global-map} unless you change one or the
748other.
73804d4b 749
73804d4b 750@example
87b2d5ff
RS
751@group
752(current-global-map)
177c0ea7 753@result{} (keymap [set-mark-command beginning-of-line @dots{}
87b2d5ff
RS
754 delete-backward-char])
755@end group
73804d4b 756@end example
87b2d5ff 757@end defun
73804d4b 758
87b2d5ff
RS
759@defun current-local-map
760This function returns the current buffer's local keymap, or @code{nil}
761if it has none. In the following example, the keymap for the
762@samp{*scratch*} buffer (using Lisp Interaction mode) is a sparse keymap
ad800164 763in which the entry for @key{ESC}, @acronym{ASCII} code 27, is another sparse
87b2d5ff 764keymap.
73804d4b 765
87b2d5ff
RS
766@example
767@group
768(current-local-map)
177c0ea7
JB
769@result{} (keymap
770 (10 . eval-print-last-sexp)
771 (9 . lisp-indent-line)
772 (127 . backward-delete-char-untabify)
87b2d5ff
RS
773@end group
774@group
177c0ea7
JB
775 (27 keymap
776 (24 . eval-defun)
87b2d5ff
RS
777 (17 . indent-sexp)))
778@end group
779@end example
780@end defun
73804d4b 781
87b2d5ff
RS
782@defun current-minor-mode-maps
783This function returns a list of the keymaps of currently enabled minor modes.
784@end defun
73804d4b 785
87b2d5ff
RS
786@defun use-global-map keymap
787This function makes @var{keymap} the new current global keymap. It
788returns @code{nil}.
73804d4b 789
87b2d5ff
RS
790It is very unusual to change the global keymap.
791@end defun
73804d4b 792
87b2d5ff
RS
793@defun use-local-map keymap
794This function makes @var{keymap} the new local keymap of the current
795buffer. If @var{keymap} is @code{nil}, then the buffer has no local
796keymap. @code{use-local-map} returns @code{nil}. Most major mode
797commands use this function.
798@end defun
73804d4b 799
87b2d5ff
RS
800@c Emacs 19 feature
801@defvar minor-mode-map-alist
ca1b0914 802@anchor{Definition of minor-mode-map-alist}
87b2d5ff
RS
803This variable is an alist describing keymaps that may or may not be
804active according to the values of certain variables. Its elements look
805like this:
73804d4b 806
87b2d5ff
RS
807@example
808(@var{variable} . @var{keymap})
809@end example
73804d4b 810
87b2d5ff
RS
811The keymap @var{keymap} is active whenever @var{variable} has a
812non-@code{nil} value. Typically @var{variable} is the variable that
813enables or disables a minor mode. @xref{Keymaps and Minor Modes}.
73804d4b 814
87b2d5ff
RS
815Note that elements of @code{minor-mode-map-alist} do not have the same
816structure as elements of @code{minor-mode-alist}. The map must be the
a40d4712
PR
817@sc{cdr} of the element; a list with the map as the second element will
818not do. The @sc{cdr} can be either a keymap (a list) or a symbol whose
819function definition is a keymap.
73804d4b 820
8a36c244
RS
821When more than one minor mode keymap is active, the earlier one in
822@code{minor-mode-map-alist} takes priority. But you should design
87b2d5ff
RS
823minor modes so that they don't interfere with each other. If you do
824this properly, the order will not matter.
73804d4b 825
f9f59935
RS
826See @ref{Keymaps and Minor Modes}, for more information about minor
827modes. See also @code{minor-mode-key-binding} (@pxref{Functions for Key
828Lookup}).
829@end defvar
830
f9f59935
RS
831@defvar minor-mode-overriding-map-alist
832This variable allows major modes to override the key bindings for
833particular minor modes. The elements of this alist look like the
834elements of @code{minor-mode-map-alist}: @code{(@var{variable}
a9f0a989
RS
835. @var{keymap})}.
836
1911e6e5 837If a variable appears as an element of
a9f0a989
RS
838@code{minor-mode-overriding-map-alist}, the map specified by that
839element totally replaces any map specified for the same variable in
840@code{minor-mode-map-alist}.
f9f59935 841
969fe9b5
RS
842@code{minor-mode-overriding-map-alist} is automatically buffer-local in
843all buffers.
87b2d5ff 844@end defvar
73804d4b 845
87b2d5ff
RS
846@defvar overriding-local-map
847If non-@code{nil}, this variable holds a keymap to use instead of the
d38edfc3
RS
848buffer's local keymap, any text property or overlay keymaps, and any
849minor mode keymaps. This keymap, if specified, overrides all other
850maps that would have been active, except for the current global map.
73804d4b
RS
851@end defvar
852
5fe8e44d
RS
853@defvar overriding-terminal-local-map
854If non-@code{nil}, this variable holds a keymap to use instead of
db8af011
LT
855@code{overriding-local-map}, the buffer's local keymap, text property
856or overlay keymaps, and all the minor mode keymaps.
5fe8e44d
RS
857
858This variable is always local to the current terminal and cannot be
859buffer-local. @xref{Multiple Displays}. It is used to implement
860incremental search mode.
861@end defvar
862
4b4b65a6
RS
863@defvar overriding-local-map-menu-flag
864If this variable is non-@code{nil}, the value of
865@code{overriding-local-map} or @code{overriding-terminal-local-map} can
866affect the display of the menu bar. The default value is @code{nil}, so
867those map variables have no effect on the menu bar.
868
869Note that these two map variables do affect the execution of key
870sequences entered using the menu bar, even if they do not affect the
871menu bar display. So if a menu bar key sequence comes in, you should
872clear the variables before looking up and executing that key sequence.
873Modes that use the variables would typically do this anyway; normally
874they respond to events that they do not handle by ``unreading'' them and
875exiting.
876@end defvar
877
f9f59935
RS
878@defvar special-event-map
879This variable holds a keymap for special events. If an event type has a
880binding in this keymap, then it is special, and the binding for the
881event is run directly by @code{read-event}. @xref{Special Events}.
882@end defvar
883
229644e7
RS
884@defvar emulation-mode-map-alists
885This variable holds a list of keymap alists to use for emulations
886modes. It is intended for modes or packages using multiple minor-mode
887keymaps. Each element is a keymap alist which has the same format and
888meaning as @code{minor-mode-map-alist}, or a symbol with a variable
889binding which is such an alist. The ``active'' keymaps in each alist
890are used before @code{minor-mode-map-alist} and
891@code{minor-mode-overriding-map-alist}.
892@end defvar
893
87b2d5ff
RS
894@node Key Lookup
895@section Key Lookup
896@cindex key lookup
897@cindex keymap entry
73804d4b 898
87b2d5ff 899 @dfn{Key lookup} is the process of finding the binding of a key
59e58738
RS
900sequence from a given keymap. The execution or use of the binding is
901not part of key lookup.
73804d4b 902
f9f59935
RS
903 Key lookup uses just the event type of each event in the key sequence;
904the rest of the event is ignored. In fact, a key sequence used for key
8a36c244
RS
905lookup may designate a mouse event with just its types (a symbol)
906instead of the entire event (a list). @xref{Input Events}. Such
59e58738 907a ``key sequence'' is insufficient for @code{command-execute} to run,
f9f59935 908but it is sufficient for looking up or rebinding a key.
73804d4b 909
87b2d5ff
RS
910 When the key sequence consists of multiple events, key lookup
911processes the events sequentially: the binding of the first event is
912found, and must be a keymap; then the second event's binding is found in
913that keymap, and so on until all the events in the key sequence are used
914up. (The binding thus found for the last event may or may not be a
915keymap.) Thus, the process of key lookup is defined in terms of a
916simpler process for looking up a single event in a keymap. How that is
917done depends on the type of object associated with the event in that
918keymap.
73804d4b 919
87b2d5ff
RS
920 Let's use the term @dfn{keymap entry} to describe the value found by
921looking up an event type in a keymap. (This doesn't include the item
969fe9b5 922string and other extra elements in menu key bindings, because
87b2d5ff
RS
923@code{lookup-key} and other key lookup functions don't include them in
924the returned value.) While any Lisp object may be stored in a keymap as
969fe9b5 925a keymap entry, not all make sense for key lookup. Here is a table of
87b2d5ff 926the meaningful kinds of keymap entries:
73804d4b 927
87b2d5ff
RS
928@table @asis
929@item @code{nil}
930@cindex @code{nil} in keymap
931@code{nil} means that the events used so far in the lookup form an
932undefined key. When a keymap fails to mention an event type at all, and
933has no default binding, that is equivalent to a binding of @code{nil}
934for that event type.
73804d4b 935
87b2d5ff
RS
936@item @var{command}
937@cindex command in keymap
938The events used so far in the lookup form a complete key,
939and @var{command} is its binding. @xref{What Is a Function}.
73804d4b 940
bfe721d1 941@item @var{array}
87b2d5ff 942@cindex string in keymap
bfe721d1
KH
943The array (either a string or a vector) is a keyboard macro. The events
944used so far in the lookup form a complete key, and the array is its
945binding. See @ref{Keyboard Macros}, for more information.
73804d4b 946
969fe9b5
RS
947@item @var{keymap}
948@cindex keymap in keymap
949The events used so far in the lookup form a prefix key. The next
950event of the key sequence is looked up in @var{keymap}.
951
87b2d5ff
RS
952@item @var{list}
953@cindex list in keymap
954The meaning of a list depends on the types of the elements of the list.
73804d4b 955
87b2d5ff
RS
956@itemize @bullet
957@item
958If the @sc{car} of @var{list} is the symbol @code{keymap}, then the list
959is a keymap, and is treated as a keymap (see above).
73804d4b 960
87b2d5ff
RS
961@item
962@cindex @code{lambda} in keymap
963If the @sc{car} of @var{list} is @code{lambda}, then the list is a
91055930
RS
964lambda expression. This is presumed to be a function, and is treated
965as such (see above). In order to execute properly as a key binding,
966this function must be a command---it must have an @code{interactive}
967specification. @xref{Defining Commands}.
73804d4b 968
87b2d5ff
RS
969@item
970If the @sc{car} of @var{list} is a keymap and the @sc{cdr} is an event
971type, then this is an @dfn{indirect entry}:
73804d4b
RS
972
973@example
87b2d5ff 974(@var{othermap} . @var{othertype})
73804d4b
RS
975@end example
976
87b2d5ff
RS
977When key lookup encounters an indirect entry, it looks up instead the
978binding of @var{othertype} in @var{othermap} and uses that.
73804d4b 979
87b2d5ff
RS
980This feature permits you to define one key as an alias for another key.
981For example, an entry whose @sc{car} is the keymap called @code{esc-map}
bfe721d1 982and whose @sc{cdr} is 32 (the code for @key{SPC}) means, ``Use the global
87b2d5ff
RS
983binding of @kbd{Meta-@key{SPC}}, whatever that may be.''
984@end itemize
73804d4b 985
87b2d5ff
RS
986@item @var{symbol}
987@cindex symbol in keymap
988The function definition of @var{symbol} is used in place of
989@var{symbol}. If that too is a symbol, then this process is repeated,
990any number of times. Ultimately this should lead to an object that is
f9f59935 991a keymap, a command, or a keyboard macro. A list is allowed if it is a
87b2d5ff
RS
992keymap or a command, but indirect entries are not understood when found
993via symbols.
73804d4b 994
87b2d5ff
RS
995Note that keymaps and keyboard macros (strings and vectors) are not
996valid functions, so a symbol with a keymap, string, or vector as its
997function definition is invalid as a function. It is, however, valid as
998a key binding. If the definition is a keyboard macro, then the symbol
999is also valid as an argument to @code{command-execute}
1000(@pxref{Interactive Call}).
73804d4b 1001
87b2d5ff
RS
1002@cindex @code{undefined} in keymap
1003The symbol @code{undefined} is worth special mention: it means to treat
1004the key as undefined. Strictly speaking, the key is defined, and its
1005binding is the command @code{undefined}; but that command does the same
1006thing that is done automatically for an undefined key: it rings the bell
1007(by calling @code{ding}) but does not signal an error.
73804d4b 1008
87b2d5ff
RS
1009@cindex preventing prefix key
1010@code{undefined} is used in local keymaps to override a global key
1011binding and make the key ``undefined'' locally. A local binding of
1012@code{nil} would fail to do this because it would not override the
1013global binding.
1014
1015@item @var{anything else}
1016If any other type of object is found, the events used so far in the
1017lookup form a complete key, and the object is its binding, but the
1018binding is not executable as a command.
1019@end table
1020
1021 In short, a keymap entry may be a keymap, a command, a keyboard macro,
1022a symbol that leads to one of them, or an indirection or @code{nil}.
1023Here is an example of a sparse keymap with two characters bound to
1024commands and one bound to another keymap. This map is the normal value
1025of @code{emacs-lisp-mode-map}. Note that 9 is the code for @key{TAB},
1026127 for @key{DEL}, 27 for @key{ESC}, 17 for @kbd{C-q} and 24 for
1027@kbd{C-x}.
73804d4b
RS
1028
1029@example
87b2d5ff
RS
1030@group
1031(keymap (9 . lisp-indent-line)
1032 (127 . backward-delete-char-untabify)
1033 (27 keymap (17 . indent-sexp) (24 . eval-defun)))
1034@end group
73804d4b
RS
1035@end example
1036
87b2d5ff
RS
1037@node Functions for Key Lookup
1038@section Functions for Key Lookup
73804d4b 1039
87b2d5ff 1040 Here are the functions and variables pertaining to key lookup.
73804d4b 1041
87b2d5ff 1042@defun lookup-key keymap key &optional accept-defaults
969fe9b5
RS
1043This function returns the definition of @var{key} in @var{keymap}. All
1044the other functions described in this chapter that look up keys use
1045@code{lookup-key}. Here are examples:
73804d4b 1046
87b2d5ff
RS
1047@example
1048@group
1049(lookup-key (current-global-map) "\C-x\C-f")
1050 @result{} find-file
1051@end group
1052@group
402fe423
RS
1053(lookup-key (current-global-map) (kbd "C-x C-f"))
1054 @result{} find-file
1055@end group
1056@group
87b2d5ff
RS
1057(lookup-key (current-global-map) "\C-x\C-f12345")
1058 @result{} 2
1059@end group
1060@end example
73804d4b 1061
969fe9b5
RS
1062If the string or vector @var{key} is not a valid key sequence according
1063to the prefix keys specified in @var{keymap}, it must be ``too long''
1064and have extra events at the end that do not fit into a single key
1065sequence. Then the value is a number, the number of events at the front
1066of @var{key} that compose a complete key.
1067
1068@c Emacs 19 feature
1069If @var{accept-defaults} is non-@code{nil}, then @code{lookup-key}
1070considers default bindings as well as bindings for the specific events
1071in @var{key}. Otherwise, @code{lookup-key} reports only bindings for
1072the specific sequence @var{key}, ignoring default bindings except when
1073you explicitly ask about them. (To do this, supply @code{t} as an
1074element of @var{key}; see @ref{Format of Keymaps}.)
1075
5f1f5955
GM
1076If @var{key} contains a meta character (not a function key), that
1077character is implicitly replaced by a two-character sequence: the value
1078of @code{meta-prefix-char}, followed by the corresponding non-meta
87b2d5ff
RS
1079character. Thus, the first example below is handled by conversion into
1080the second example.
73804d4b
RS
1081
1082@example
1083@group
87b2d5ff
RS
1084(lookup-key (current-global-map) "\M-f")
1085 @result{} forward-word
1086@end group
1087@group
1088(lookup-key (current-global-map) "\ef")
1089 @result{} forward-word
73804d4b
RS
1090@end group
1091@end example
87b2d5ff
RS
1092
1093Unlike @code{read-key-sequence}, this function does not modify the
1094specified events in ways that discard information (@pxref{Key Sequence
1095Input}). In particular, it does not convert letters to lower case and
1096it does not change drag events to clicks.
73804d4b
RS
1097@end defun
1098
87b2d5ff
RS
1099@deffn Command undefined
1100Used in keymaps to undefine keys. It calls @code{ding}, but does
1101not cause an error.
1102@end deffn
1103
87b2d5ff
RS
1104@defun local-key-binding key &optional accept-defaults
1105This function returns the binding for @var{key} in the current
1106local keymap, or @code{nil} if it is undefined there.
73804d4b 1107
87b2d5ff
RS
1108@c Emacs 19 feature
1109The argument @var{accept-defaults} controls checking for default bindings,
1110as in @code{lookup-key} (above).
73804d4b
RS
1111@end defun
1112
87b2d5ff
RS
1113@defun global-key-binding key &optional accept-defaults
1114This function returns the binding for command @var{key} in the
1115current global keymap, or @code{nil} if it is undefined there.
73804d4b
RS
1116
1117@c Emacs 19 feature
87b2d5ff
RS
1118The argument @var{accept-defaults} controls checking for default bindings,
1119as in @code{lookup-key} (above).
1120@end defun
73804d4b 1121
87b2d5ff
RS
1122@c Emacs 19 feature
1123@defun minor-mode-key-binding key &optional accept-defaults
1124This function returns a list of all the active minor mode bindings of
1125@var{key}. More precisely, it returns an alist of pairs
1126@code{(@var{modename} . @var{binding})}, where @var{modename} is the
1127variable that enables the minor mode, and @var{binding} is @var{key}'s
1128binding in that mode. If @var{key} has no minor-mode bindings, the
1129value is @code{nil}.
73804d4b 1130
f9f59935
RS
1131If the first binding found is not a prefix definition (a keymap or a
1132symbol defined as a keymap), all subsequent bindings from other minor
1133modes are omitted, since they would be completely shadowed. Similarly,
1134the list omits non-prefix bindings that follow prefix bindings.
73804d4b 1135
87b2d5ff
RS
1136The argument @var{accept-defaults} controls checking for default
1137bindings, as in @code{lookup-key} (above).
1138@end defun
73804d4b 1139
87b2d5ff
RS
1140@defvar meta-prefix-char
1141@cindex @key{ESC}
59e58738 1142This variable is the meta-prefix character code. It is used for
87b2d5ff 1143translating a meta character to a two-character sequence so it can be
59e58738
RS
1144looked up in a keymap. For useful results, the value should be a
1145prefix event (@pxref{Prefix Keys}). The default value is 27, which is
1146the @acronym{ASCII} code for @key{ESC}.
73804d4b 1147
5f1f5955
GM
1148As long as the value of @code{meta-prefix-char} remains 27, key lookup
1149translates @kbd{M-b} into @kbd{@key{ESC} b}, which is normally defined
1150as the @code{backward-word} command. However, if you were to set
87b2d5ff
RS
1151@code{meta-prefix-char} to 24, the code for @kbd{C-x}, then Emacs will
1152translate @kbd{M-b} into @kbd{C-x b}, whose standard binding is the
5f1f5955
GM
1153@code{switch-to-buffer} command. (Don't actually do this!) Here is an
1154illustration of what would happen:
73804d4b 1155
87b2d5ff
RS
1156@smallexample
1157@group
1158meta-prefix-char ; @r{The default value.}
1159 @result{} 27
1160@end group
1161@group
1162(key-binding "\M-b")
1163 @result{} backward-word
1164@end group
1165@group
1166?\C-x ; @r{The print representation}
1167 @result{} 24 ; @r{of a character.}
1168@end group
1169@group
1170(setq meta-prefix-char 24)
177c0ea7 1171 @result{} 24
87b2d5ff
RS
1172@end group
1173@group
1174(key-binding "\M-b")
1175 @result{} switch-to-buffer ; @r{Now, typing @kbd{M-b} is}
1176 ; @r{like typing @kbd{C-x b}.}
73804d4b 1177
87b2d5ff
RS
1178(setq meta-prefix-char 27) ; @r{Avoid confusion!}
1179 @result{} 27 ; @r{Restore the default value!}
1180@end group
1181@end smallexample
5f1f5955
GM
1182
1183This translation of one event into two happens only for characters, not
1184for other kinds of input events. Thus, @kbd{M-@key{F1}}, a function
1185key, is not converted into @kbd{@key{ESC} @key{F1}}.
73804d4b
RS
1186@end defvar
1187
87b2d5ff
RS
1188@node Changing Key Bindings
1189@section Changing Key Bindings
1190@cindex changing key bindings
1191@cindex rebinding
73804d4b 1192
87b2d5ff
RS
1193 The way to rebind a key is to change its entry in a keymap. If you
1194change a binding in the global keymap, the change is effective in all
1195buffers (though it has no direct effect in buffers that shadow the
1196global binding with a local one). If you change the current buffer's
1197local map, that usually affects all buffers using the same major mode.
1198The @code{global-set-key} and @code{local-set-key} functions are
1199convenient interfaces for these operations (@pxref{Key Binding
1200Commands}). You can also use @code{define-key}, a more general
1201function; then you must specify explicitly the map to change.
73804d4b 1202
87b2d5ff
RS
1203@cindex meta character key constants
1204@cindex control character key constants
1205 In writing the key sequence to rebind, it is good to use the special
1206escape sequences for control and meta characters (@pxref{String Type}).
1207The syntax @samp{\C-} means that the following character is a control
1208character and @samp{\M-} means that the following character is a meta
1209character. Thus, the string @code{"\M-x"} is read as containing a
1210single @kbd{M-x}, @code{"\C-f"} is read as containing a single
1211@kbd{C-f}, and @code{"\M-\C-x"} and @code{"\C-\M-x"} are both read as
1212containing a single @kbd{C-M-x}. You can also use this escape syntax in
1213vectors, as well as others that aren't allowed in strings; one example
1214is @samp{[?\C-\H-x home]}. @xref{Character Type}.
73804d4b 1215
22697dac
KH
1216 The key definition and lookup functions accept an alternate syntax for
1217event types in a key sequence that is a vector: you can use a list
1218containing modifier names plus one base event (a character or function
1219key name). For example, @code{(control ?a)} is equivalent to
1220@code{?\C-a} and @code{(hyper control left)} is equivalent to
969fe9b5
RS
1221@code{C-H-left}. One advantage of such lists is that the precise
1222numeric codes for the modifier bits don't appear in compiled files.
bfe721d1 1223
8a36c244
RS
1224 For the functions below, an error is signaled if @var{keymap} is not
1225a keymap or if @var{key} is not a string or vector representing a key
87b2d5ff 1226sequence. You can use event types (symbols) as shorthand for events
08244b81
CY
1227that are lists. The @code{kbd} macro (@pxref{Key Sequences}) is a
1228convenient way to specify the key sequence.
73804d4b 1229
87b2d5ff
RS
1230@defun define-key keymap key binding
1231This function sets the binding for @var{key} in @var{keymap}. (If
1232@var{key} is more than one event long, the change is actually made
1233in another keymap reached from @var{keymap}.) The argument
1234@var{binding} can be any Lisp object, but only certain types are
1235meaningful. (For a list of meaningful types, see @ref{Key Lookup}.)
1236The value returned by @code{define-key} is @var{binding}.
73804d4b 1237
48bf63e3
RS
1238If @var{key} is @code{[t]}, this sets the default binding in
1239@var{keymap}. When an event has no binding of its own, the Emacs
1240command loop uses the keymap's default binding, if there is one.
1241
87b2d5ff
RS
1242@cindex invalid prefix key error
1243@cindex key sequence error
969fe9b5
RS
1244Every prefix of @var{key} must be a prefix key (i.e., bound to a keymap)
1245or undefined; otherwise an error is signaled. If some prefix of
1246@var{key} is undefined, then @code{define-key} defines it as a prefix
1247key so that the rest of @var{key} can be defined as specified.
f9f59935
RS
1248
1249If there was previously no binding for @var{key} in @var{keymap}, the
1250new binding is added at the beginning of @var{keymap}. The order of
48bf63e3
RS
1251bindings in a keymap makes no difference for keyboard input, but it
1252does matter for menu keymaps (@pxref{Menu Keymaps}).
87b2d5ff 1253@end defun
73804d4b 1254
87b2d5ff
RS
1255 Here is an example that creates a sparse keymap and makes a number of
1256bindings in it:
73804d4b 1257
87b2d5ff 1258@smallexample
73804d4b 1259@group
87b2d5ff
RS
1260(setq map (make-sparse-keymap))
1261 @result{} (keymap)
73804d4b 1262@end group
73804d4b 1263@group
87b2d5ff
RS
1264(define-key map "\C-f" 'forward-char)
1265 @result{} forward-char
73804d4b
RS
1266@end group
1267@group
87b2d5ff
RS
1268map
1269 @result{} (keymap (6 . forward-char))
73804d4b 1270@end group
73804d4b 1271
73804d4b 1272@group
87b2d5ff 1273;; @r{Build sparse submap for @kbd{C-x} and bind @kbd{f} in that.}
402fe423 1274(define-key map (kbd "C-x f") 'forward-word)
73804d4b
RS
1275 @result{} forward-word
1276@end group
1277@group
87b2d5ff 1278map
177c0ea7 1279@result{} (keymap
87b2d5ff
RS
1280 (24 keymap ; @kbd{C-x}
1281 (102 . forward-word)) ; @kbd{f}
1282 (6 . forward-char)) ; @kbd{C-f}
73804d4b 1283@end group
73804d4b 1284
87b2d5ff
RS
1285@group
1286;; @r{Bind @kbd{C-p} to the @code{ctl-x-map}.}
402fe423 1287(define-key map (kbd "C-p") ctl-x-map)
87b2d5ff 1288;; @code{ctl-x-map}
177c0ea7 1289@result{} [nil @dots{} find-file @dots{} backward-kill-sentence]
87b2d5ff 1290@end group
73804d4b 1291
73804d4b 1292@group
87b2d5ff 1293;; @r{Bind @kbd{C-f} to @code{foo} in the @code{ctl-x-map}.}
402fe423 1294(define-key map (kbd "C-p C-f") 'foo)
87b2d5ff 1295@result{} 'foo
73804d4b 1296@end group
87b2d5ff
RS
1297@group
1298map
1299@result{} (keymap ; @r{Note @code{foo} in @code{ctl-x-map}.}
1300 (16 keymap [nil @dots{} foo @dots{} backward-kill-sentence])
177c0ea7 1301 (24 keymap
87b2d5ff
RS
1302 (102 . forward-word))
1303 (6 . forward-char))
1304@end group
1305@end smallexample
73804d4b 1306
87b2d5ff
RS
1307@noindent
1308Note that storing a new binding for @kbd{C-p C-f} actually works by
1309changing an entry in @code{ctl-x-map}, and this has the effect of
1310changing the bindings of both @kbd{C-p C-f} and @kbd{C-x C-f} in the
1311default global map.
73804d4b 1312
229644e7 1313 The function @code{substitute-key-definition} scans a keymap for
db8af011 1314keys that have a certain binding and rebinds them with a different
91055930
RS
1315binding. Another feature which is cleaner and can often produce the
1316same results to remap one command into another (@pxref{Remapping
1317Commands}).
229644e7 1318
87b2d5ff
RS
1319@defun substitute-key-definition olddef newdef keymap &optional oldmap
1320@cindex replace bindings
1321This function replaces @var{olddef} with @var{newdef} for any keys in
1322@var{keymap} that were bound to @var{olddef}. In other words,
1323@var{olddef} is replaced with @var{newdef} wherever it appears. The
1324function returns @code{nil}.
73804d4b 1325
87b2d5ff
RS
1326For example, this redefines @kbd{C-x C-f}, if you do it in an Emacs with
1327standard bindings:
73804d4b 1328
87b2d5ff
RS
1329@smallexample
1330@group
177c0ea7 1331(substitute-key-definition
87b2d5ff
RS
1332 'find-file 'find-file-read-only (current-global-map))
1333@end group
1334@end smallexample
73804d4b
RS
1335
1336@c Emacs 19 feature
a0a1df48
GM
1337If @var{oldmap} is non-@code{nil}, that changes the behavior of
1338@code{substitute-key-definition}: the bindings in @var{oldmap} determine
1339which keys to rebind. The rebindings still happen in @var{keymap}, not
1340in @var{oldmap}. Thus, you can change one map under the control of the
87b2d5ff 1341bindings in another. For example,
73804d4b 1342
87b2d5ff
RS
1343@smallexample
1344(substitute-key-definition
1345 'delete-backward-char 'my-funny-delete
1346 my-map global-map)
1347@end smallexample
73804d4b 1348
87b2d5ff
RS
1349@noindent
1350puts the special deletion command in @code{my-map} for whichever keys
1351are globally bound to the standard deletion command.
73804d4b 1352
87b2d5ff 1353Here is an example showing a keymap before and after substitution:
73804d4b
RS
1354
1355@smallexample
1356@group
177c0ea7
JB
1357(setq map '(keymap
1358 (?1 . olddef-1)
1359 (?2 . olddef-2)
73804d4b
RS
1360 (?3 . olddef-1)))
1361@result{} (keymap (49 . olddef-1) (50 . olddef-2) (51 . olddef-1))
1362@end group
1363
1364@group
1365(substitute-key-definition 'olddef-1 'newdef map)
1366@result{} nil
1367@end group
1368@group
1369map
1370@result{} (keymap (49 . newdef) (50 . olddef-2) (51 . newdef))
1371@end group
1372@end smallexample
1373@end defun
1374
1375@defun suppress-keymap keymap &optional nodigits
1376@cindex @code{self-insert-command} override
1377This function changes the contents of the full keymap @var{keymap} by
cd7e5dd6
LT
1378remapping @code{self-insert-command} to the command @code{undefined}
1379(@pxref{Remapping Commands}). This has the effect of undefining all
1380printing characters, thus making ordinary insertion of text impossible.
1381@code{suppress-keymap} returns @code{nil}.
73804d4b
RS
1382
1383If @var{nodigits} is @code{nil}, then @code{suppress-keymap} defines
1384digits to run @code{digit-argument}, and @kbd{-} to run
1385@code{negative-argument}. Otherwise it makes them undefined like the
1386rest of the printing characters.
1387
177c0ea7
JB
1388@cindex yank suppression
1389@cindex @code{quoted-insert} suppression
73804d4b
RS
1390The @code{suppress-keymap} function does not make it impossible to
1391modify a buffer, as it does not suppress commands such as @code{yank}
1392and @code{quoted-insert}. To prevent any modification of a buffer, make
1393it read-only (@pxref{Read Only Buffers}).
1394
1395Since this function modifies @var{keymap}, you would normally use it
1396on a newly created keymap. Operating on an existing keymap
1397that is used for some other purpose is likely to cause trouble; for
1398example, suppressing @code{global-map} would make it impossible to use
1399most of Emacs.
1400
1401Most often, @code{suppress-keymap} is used to initialize local
1402keymaps of modes such as Rmail and Dired where insertion of text is not
1403desirable and the buffer is read-only. Here is an example taken from
1404the file @file{emacs/lisp/dired.el}, showing how the local keymap for
1405Dired mode is set up:
1406
1407@smallexample
1408@group
1911e6e5
RS
1409(setq dired-mode-map (make-keymap))
1410(suppress-keymap dired-mode-map)
1411(define-key dired-mode-map "r" 'dired-rename-file)
1412(define-key dired-mode-map "\C-d" 'dired-flag-file-deleted)
1413(define-key dired-mode-map "d" 'dired-flag-file-deleted)
1414(define-key dired-mode-map "v" 'dired-view-file)
1415(define-key dired-mode-map "e" 'dired-find-file)
1416(define-key dired-mode-map "f" 'dired-find-file)
1417@dots{}
73804d4b
RS
1418@end group
1419@end smallexample
1420@end defun
1421
229644e7
RS
1422@node Remapping Commands
1423@section Remapping Commands
1424@cindex remapping commands
1425
1426 A special kind of key binding, using a special ``key sequence''
1427which includes a command name, has the effect of @dfn{remapping} that
1428command into another. Here's how it works. You make a key binding
b0110b4a 1429for a key sequence that starts with the dummy event @code{remap},
229644e7
RS
1430followed by the command name you want to remap. Specify the remapped
1431definition as the definition in this binding. The remapped definition
1432is usually a command name, but it can be any valid definition for
1433a key binding.
1434
1435 Here's an example. Suppose that My mode uses special commands
1436@code{my-kill-line} and @code{my-kill-word}, which should be invoked
1437instead of @code{kill-line} and @code{kill-word}. It can establish
1438this by making these two command-remapping bindings in its keymap:
1439
342fd6cd 1440@smallexample
229644e7
RS
1441(define-key my-mode-map [remap kill-line] 'my-kill-line)
1442(define-key my-mode-map [remap kill-word] 'my-kill-word)
342fd6cd 1443@end smallexample
229644e7
RS
1444
1445Whenever @code{my-mode-map} is an active keymap, if the user types
1446@kbd{C-k}, Emacs will find the standard global binding of
1447@code{kill-line} (assuming nobody has changed it). But
db8af011 1448@code{my-mode-map} remaps @code{kill-line} to @code{my-kill-line},
229644e7
RS
1449so instead of running @code{kill-line}, Emacs runs
1450@code{my-kill-line}.
1451
1452Remapping only works through a single level. In other words,
1453
342fd6cd 1454@smallexample
229644e7
RS
1455(define-key my-mode-map [remap kill-line] 'my-kill-line)
1456(define-key my-mode-map [remap my-kill-line] 'my-other-kill-line)
342fd6cd 1457@end smallexample
229644e7
RS
1458
1459@noindent
1460does not have the effect of remapping @code{kill-line} into
db8af011 1461@code{my-other-kill-line}. If an ordinary key binding specifies
229644e7
RS
1462@code{kill-line}, this keymap will remap it to @code{my-kill-line};
1463if an ordinary binding specifies @code{my-kill-line}, this keymap will
1464remap it to @code{my-other-kill-line}.
1465
1466@defun command-remapping command
db8af011
LT
1467This function returns the remapping for @var{command} (a symbol),
1468given the current active keymaps. If @var{command} is not remapped
1469(which is the usual situation), or not a symbol, the function returns
1470@code{nil}.
229644e7
RS
1471@end defun
1472
73804d4b
RS
1473@node Key Binding Commands
1474@section Commands for Binding Keys
1475
1476 This section describes some convenient interactive interfaces for
1477changing key bindings. They work by calling @code{define-key}.
1478
a40d4712
PR
1479 People often use @code{global-set-key} in their init files
1480(@pxref{Init File}) for simple customization. For example,
87b2d5ff
RS
1481
1482@smallexample
402fe423 1483(global-set-key (kbd "C-x C-\\") 'next-line)
87b2d5ff
RS
1484@end smallexample
1485
1486@noindent
1487or
1488
1489@smallexample
1490(global-set-key [?\C-x ?\C-\\] 'next-line)
1491@end smallexample
1492
bfe721d1
KH
1493@noindent
1494or
1495
1496@smallexample
1497(global-set-key [(control ?x) (control ?\\)] 'next-line)
1498@end smallexample
1499
87b2d5ff
RS
1500@noindent
1501redefines @kbd{C-x C-\} to move down a line.
1502
1503@smallexample
1504(global-set-key [M-mouse-1] 'mouse-set-point)
1505@end smallexample
1506
1507@noindent
8a36c244 1508redefines the first (leftmost) mouse button, entered with the Meta key, to
87b2d5ff
RS
1509set point where you click.
1510
ad800164
EZ
1511@cindex non-@acronym{ASCII} text in keybindings
1512 Be careful when using non-@acronym{ASCII} text characters in Lisp
8241495d
RS
1513specifications of keys to bind. If these are read as multibyte text, as
1514they usually will be in a Lisp file (@pxref{Loading Non-ASCII}), you
1515must type the keys as multibyte too. For instance, if you use this:
1516
1517@smallexample
1518(global-set-key "@"o" 'my-function) ; bind o-umlaut
1519@end smallexample
1520
1521@noindent
1522or
1523
1524@smallexample
1525(global-set-key ?@"o 'my-function) ; bind o-umlaut
1526@end smallexample
1527
1528@noindent
1529and your language environment is multibyte Latin-1, these commands
1530actually bind the multibyte character with code 2294, not the unibyte
1531Latin-1 character with code 246 (@kbd{M-v}). In order to use this
1532binding, you need to enter the multibyte Latin-1 character as keyboard
1533input. One way to do this is by using an appropriate input method
db8af011 1534(@pxref{Input Methods, , Input Methods, emacs, The GNU Emacs Manual}).
8241495d
RS
1535
1536 If you want to use a unibyte character in the key binding, you can
1537construct the key sequence string using @code{multibyte-char-to-unibyte}
1538or @code{string-make-unibyte} (@pxref{Converting Representations}).
1539
b68f60d7 1540@deffn Command global-set-key key binding
87b2d5ff 1541This function sets the binding of @var{key} in the current global map
b68f60d7 1542to @var{binding}.
73804d4b
RS
1543
1544@smallexample
1545@group
b68f60d7 1546(global-set-key @var{key} @var{binding})
73804d4b 1547@equiv{}
b68f60d7 1548(define-key (current-global-map) @var{key} @var{binding})
73804d4b
RS
1549@end group
1550@end smallexample
1551@end deffn
1552
1553@deffn Command global-unset-key key
1554@cindex unbinding keys
87b2d5ff 1555This function removes the binding of @var{key} from the current
73804d4b
RS
1556global map.
1557
87b2d5ff
RS
1558One use of this function is in preparation for defining a longer key
1559that uses @var{key} as a prefix---which would not be allowed if
1560@var{key} has a non-prefix binding. For example:
1561
1562@smallexample
1563@group
1564(global-unset-key "\C-l")
1565 @result{} nil
1566@end group
1567@group
1568(global-set-key "\C-l\C-l" 'redraw-display)
1569 @result{} nil
1570@end group
1571@end smallexample
1572
1573This function is implemented simply using @code{define-key}:
1574
1575@smallexample
1576@group
1577(global-unset-key @var{key})
1578@equiv{}
1579(define-key (current-global-map) @var{key} nil)
1580@end group
1581@end smallexample
1582@end deffn
1583
b68f60d7 1584@deffn Command local-set-key key binding
87b2d5ff 1585This function sets the binding of @var{key} in the current local
b68f60d7 1586keymap to @var{binding}.
87b2d5ff
RS
1587
1588@smallexample
1589@group
b68f60d7 1590(local-set-key @var{key} @var{binding})
87b2d5ff 1591@equiv{}
b68f60d7 1592(define-key (current-local-map) @var{key} @var{binding})
87b2d5ff
RS
1593@end group
1594@end smallexample
1595@end deffn
1596
1597@deffn Command local-unset-key key
1598This function removes the binding of @var{key} from the current
1599local map.
1600
1601@smallexample
1602@group
1603(local-unset-key @var{key})
1604@equiv{}
1605(define-key (current-local-map) @var{key} nil)
1606@end group
1607@end smallexample
1608@end deffn
1609
1610@node Scanning Keymaps
1611@section Scanning Keymaps
1612
1613 This section describes functions used to scan all the current keymaps
1614for the sake of printing help information.
1615
1616@defun accessible-keymaps keymap &optional prefix
f9f59935
RS
1617This function returns a list of all the keymaps that can be reached (via
1618zero or more prefix keys) from @var{keymap}. The value is an
1619association list with elements of the form @code{(@var{key} .@:
1620@var{map})}, where @var{key} is a prefix key whose definition in
1621@var{keymap} is @var{map}.
87b2d5ff
RS
1622
1623The elements of the alist are ordered so that the @var{key} increases
db8af011 1624in length. The first element is always @code{([] .@: @var{keymap})},
87b2d5ff
RS
1625because the specified keymap is accessible from itself with a prefix of
1626no events.
1627
1628If @var{prefix} is given, it should be a prefix key sequence; then
1629@code{accessible-keymaps} includes only the submaps whose prefixes start
1630with @var{prefix}. These elements look just as they do in the value of
1631@code{(accessible-keymaps)}; the only difference is that some elements
1632are omitted.
1633
1634In the example below, the returned alist indicates that the key
1635@key{ESC}, which is displayed as @samp{^[}, is a prefix key whose
1636definition is the sparse keymap @code{(keymap (83 .@: center-paragraph)
1637(115 .@: foo))}.
1638
1639@smallexample
1640@group
1641(accessible-keymaps (current-local-map))
db8af011 1642@result{}(([] keymap
87b2d5ff
RS
1643 (27 keymap ; @r{Note this keymap for @key{ESC} is repeated below.}
1644 (83 . center-paragraph)
1645 (115 . center-line))
1646 (9 . tab-to-tab-stop))
1647@end group
1648
1649@group
177c0ea7
JB
1650 ("^[" keymap
1651 (83 . center-paragraph)
87b2d5ff
RS
1652 (115 . foo)))
1653@end group
1654@end smallexample
1655
1656In the following example, @kbd{C-h} is a prefix key that uses a sparse
1657keymap starting with @code{(keymap (118 . describe-variable)@dots{})}.
1658Another prefix, @kbd{C-x 4}, uses a keymap which is also the value of
1659the variable @code{ctl-x-4-map}. The event @code{mode-line} is one of
1660several dummy events used as prefixes for mouse actions in special parts
1661of a window.
1662
1663@smallexample
1664@group
1665(accessible-keymaps (current-global-map))
db8af011 1666@result{} (([] keymap [set-mark-command beginning-of-line @dots{}
87b2d5ff
RS
1667 delete-backward-char])
1668@end group
1669@group
1670 ("^H" keymap (118 . describe-variable) @dots{}
1671 (8 . help-for-help))
1672@end group
1673@group
1674 ("^X" keymap [x-flush-mouse-queue @dots{}
1675 backward-kill-sentence])
1676@end group
1677@group
1678 ("^[" keymap [mark-sexp backward-sexp @dots{}
1679 backward-kill-word])
1680@end group
1681 ("^X4" keymap (15 . display-buffer) @dots{})
1682@group
1683 ([mode-line] keymap
1684 (S-mouse-2 . mouse-split-window-horizontally) @dots{}))
1685@end group
1686@end smallexample
1687
1688@noindent
969fe9b5 1689These are not all the keymaps you would see in actuality.
87b2d5ff
RS
1690@end defun
1691
0f201864
RS
1692@defun map-keymap function keymap
1693The function @code{map-keymap} calls @var{function} once
1694for each binding in @var{keymap}. It passes two arguments,
1695the event type and the value of the binding. If @var{keymap}
1696has a parent, the parent's bindings are included as well.
db8af011
LT
1697This works recursively: if the parent has itself a parent, then the
1698grandparent's bindings are also included and so on.
0f201864
RS
1699
1700This function is the cleanest way to examine all the bindings
1701in a keymap.
1702@end defun
1703
229644e7 1704@defun where-is-internal command &optional keymap firstonly noindirect no-remap
f9f59935
RS
1705This function is a subroutine used by the @code{where-is} command
1706(@pxref{Help, , Help, emacs,The GNU Emacs Manual}). It returns a list
db8af011 1707of all key sequences (of any length) that are bound to @var{command} in a
f9f59935 1708set of keymaps.
87b2d5ff
RS
1709
1710The argument @var{command} can be any object; it is compared with all
1711keymap entries using @code{eq}.
1712
1713If @var{keymap} is @code{nil}, then the maps used are the current active
1714keymaps, disregarding @code{overriding-local-map} (that is, pretending
db8af011 1715its value is @code{nil}). If @var{keymap} is a keymap, then the
87d6dc14
EZ
1716maps searched are @var{keymap} and the global keymap. If @var{keymap}
1717is a list of keymaps, only those keymaps are searched.
87b2d5ff
RS
1718
1719Usually it's best to use @code{overriding-local-map} as the expression
1720for @var{keymap}. Then @code{where-is-internal} searches precisely the
1721keymaps that are active. To search only the global map, pass
1722@code{(keymap)} (an empty keymap) as @var{keymap}.
1723
1724If @var{firstonly} is @code{non-ascii}, then the value is a single
db8af011 1725vector representing the first key sequence found, rather than a list of
87b2d5ff
RS
1726all possible key sequences. If @var{firstonly} is @code{t}, then the
1727value is the first key sequence, except that key sequences consisting
ad800164 1728entirely of @acronym{ASCII} characters (or meta variants of @acronym{ASCII}
db8af011
LT
1729characters) are preferred to all other key sequences and that the
1730return value can never be a menu binding.
87b2d5ff
RS
1731
1732If @var{noindirect} is non-@code{nil}, @code{where-is-internal} doesn't
1733follow indirect keymap bindings. This makes it possible to search for
1734an indirect definition itself.
1735
229644e7
RS
1736When command remapping is in effect (@pxref{Remapping Commands}),
1737@code{where-is-internal} figures out when a command will be run due to
1738remapping and reports keys accordingly. It also returns @code{nil} if
1739@var{command} won't really be run because it has been remapped to some
1740other command. However, if @var{no-remap} is non-@code{nil}.
1741@code{where-is-internal} ignores remappings.
1742
87b2d5ff
RS
1743@smallexample
1744@group
1745(where-is-internal 'describe-function)
1746 @result{} ("\^hf" "\^hd")
1747@end group
1748@end smallexample
1749@end defun
1750
db8af011 1751@deffn Command describe-bindings &optional prefix buffer-or-name
969fe9b5
RS
1752This function creates a listing of all current key bindings, and
1753displays it in a buffer named @samp{*Help*}. The text is grouped by
1754modes---minor modes first, then the major mode, then global bindings.
87b2d5ff
RS
1755
1756If @var{prefix} is non-@code{nil}, it should be a prefix key; then the
1757listing includes only keys that start with @var{prefix}.
1758
1759The listing describes meta characters as @key{ESC} followed by the
1760corresponding non-meta character.
1761
ad800164 1762When several characters with consecutive @acronym{ASCII} codes have the
87b2d5ff
RS
1763same definition, they are shown together, as
1764@samp{@var{firstchar}..@var{lastchar}}. In this instance, you need to
ad800164 1765know the @acronym{ASCII} codes to understand which characters this means.
87b2d5ff 1766For example, in the default global map, the characters @samp{@key{SPC}
ad800164
EZ
1767..@: ~} are described by a single line. @key{SPC} is @acronym{ASCII} 32,
1768@kbd{~} is @acronym{ASCII} 126, and the characters between them include all
87b2d5ff
RS
1769the normal printing characters, (e.g., letters, digits, punctuation,
1770etc.@:); all these characters are bound to @code{self-insert-command}.
db8af011
LT
1771
1772If @var{buffer-or-name} is non-@code{nil}, it should be a buffer or a
1773buffer name. Then @code{describe-bindings} lists that buffer's bindings,
1774instead of the current buffer's.
87b2d5ff
RS
1775@end deffn
1776
1777@node Menu Keymaps
1778@section Menu Keymaps
1779@cindex menu keymaps
1780
1781@c Emacs 19 feature
1782A keymap can define a menu as well as bindings for keyboard keys and
1783mouse button. Menus are usually actuated with the mouse, but they can
1784work with the keyboard also.
1785
1786@menu
1787* Defining Menus:: How to make a keymap that defines a menu.
1788* Mouse Menus:: How users actuate the menu with the mouse.
1789* Keyboard Menus:: How they actuate it with the keyboard.
1790* Menu Example:: Making a simple menu.
1791* Menu Bar:: How to customize the menu bar.
8241495d 1792* Tool Bar:: A tool bar is a row of images.
87b2d5ff
RS
1793* Modifying Menus:: How to add new items to a menu.
1794@end menu
1795
1796@node Defining Menus
1797@subsection Defining Menus
1798@cindex defining menus
1799@cindex menu prompt string
1800@cindex prompt string (of menu)
1801
1802A keymap is suitable for menu use if it has an @dfn{overall prompt
1803string}, which is a string that appears as an element of the keymap.
1804(@xref{Format of Keymaps}.) The string should describe the purpose of
e465fdc2 1805the menu's commands. Emacs displays the overall prompt string as the
b08d86c6
DL
1806menu title in some cases, depending on the toolkit (if any) used for
1807displaying menus.@footnote{It is required for menus which do not use a
1808toolkit, e.g.@: under MS-DOS.} Keyboard menus also display the overall
1809prompt string.
e465fdc2
GM
1810
1811The easiest way to construct a keymap with a prompt string is to specify
b08d86c6 1812the string as an argument when you call @code{make-keymap},
db8af011
LT
1813@code{make-sparse-keymap} (@pxref{Creating Keymaps}), or
1814@code{define-prefix-command} (@pxref{Definition of define-prefix-command}).
1815
87b2d5ff 1816
0f201864
RS
1817@defun keymap-prompt keymap
1818This function returns the overall prompt string of @var{keymap},
1819or @code{nil} if it has none.
1820@end defun
1821
aae60c21
RS
1822The order of items in the menu is the same as the order of bindings in
1823the keymap. Since @code{define-key} puts new bindings at the front, you
1824should define the menu items starting at the bottom of the menu and
1825moving to the top, if you care about the order. When you add an item to
1826an existing menu, you can specify its position in the menu using
1827@code{define-key-after} (@pxref{Modifying Menus}).
1828
969fe9b5 1829@menu
a9f0a989
RS
1830* Simple Menu Items:: A simple kind of menu key binding,
1831 limited in capabilities.
a9f0a989
RS
1832* Extended Menu Items:: More powerful menu item definitions
1833 let you specify keywords to enable
1834 various features.
8241495d
RS
1835* Menu Separators:: Drawing a horizontal line through a menu.
1836* Alias Menu Items:: Using command aliases in menu items.
969fe9b5
RS
1837@end menu
1838
1839@node Simple Menu Items
1840@subsubsection Simple Menu Items
1841
1842 The simpler and older way to define a menu keymap binding
1843looks like this:
87b2d5ff
RS
1844
1845@example
969fe9b5 1846(@var{item-string} . @var{real-binding})
87b2d5ff
RS
1847@end example
1848
a9f0a989 1849@noindent
969fe9b5
RS
1850The @sc{car}, @var{item-string}, is the string to be displayed in the
1851menu. It should be short---preferably one to three words. It should
79dc1dfc 1852describe the action of the command it corresponds to. Note that it is
ad800164 1853not generally possible to display non-@acronym{ASCII} text in menus. It will
79dc1dfc 1854work for keyboard menus and will work to a large extent when Emacs is
8a36c244 1855built with the Gtk+ toolkit.@footnote{In this case, the text is first
79dc1dfc
DL
1856encoded using the @code{utf-8} coding system and then rendered by the
1857toolkit as it sees fit.}
87b2d5ff 1858
87b2d5ff
RS
1859You can also supply a second string, called the help string, as follows:
1860
1861@example
b08d86c6 1862(@var{item-string} @var{help} . @var{real-binding})
87b2d5ff
RS
1863@end example
1864
b08d86c6
DL
1865@var{help} specifies a ``help-echo'' string to display while the mouse
1866is on that item in the same way as @code{help-echo} text properties
1867(@pxref{Help display}).
87b2d5ff 1868
969fe9b5 1869As far as @code{define-key} is concerned, @var{item-string} and
0521d6f5
RS
1870@var{help-string} are part of the event's binding. However,
1871@code{lookup-key} returns just @var{real-binding}, and only
1872@var{real-binding} is used for executing the key.
1873
969fe9b5
RS
1874If @var{real-binding} is @code{nil}, then @var{item-string} appears in
1875the menu but cannot be selected.
87b2d5ff
RS
1876
1877If @var{real-binding} is a symbol and has a non-@code{nil}
1878@code{menu-enable} property, that property is an expression that
1879controls whether the menu item is enabled. Every time the keymap is
1880used to display a menu, Emacs evaluates the expression, and it enables
1881the menu item only if the expression's value is non-@code{nil}. When a
1882menu item is disabled, it is displayed in a ``fuzzy'' fashion, and
969fe9b5 1883cannot be selected.
87b2d5ff 1884
bfe721d1
KH
1885The menu bar does not recalculate which items are enabled every time you
1886look at a menu. This is because the X toolkit requires the whole tree
1887of menus in advance. To force recalculation of the menu bar, call
1888@code{force-mode-line-update} (@pxref{Mode Line Format}).
1889
0521d6f5
RS
1890You've probably noticed that menu items show the equivalent keyboard key
1891sequence (if any) to invoke the same command. To save time on
1892recalculation, menu display caches this information in a sublist in the
1893binding, like this:
1894
1895@c This line is not too long--rms.
1896@example
969fe9b5 1897(@var{item-string} @r{[}@var{help-string}@r{]} (@var{key-binding-data}) . @var{real-binding})
0521d6f5
RS
1898@end example
1899
969fe9b5 1900@noindent
0521d6f5 1901Don't put these sublists in the menu item yourself; menu display
969fe9b5
RS
1902calculates them automatically. Don't mention keyboard equivalents in
1903the item strings themselves, since that is redundant.
0521d6f5 1904
969fe9b5
RS
1905@node Extended Menu Items
1906@subsubsection Extended Menu Items
a9f0a989 1907@kindex menu-item
969fe9b5
RS
1908
1909 An extended-format menu item is a more flexible and also cleaner
1910alternative to the simple format. It consists of a list that starts
1911with the symbol @code{menu-item}. To define a non-selectable string,
1912the item looks like this:
1913
1914@example
1915(menu-item @var{item-name})
1916@end example
1917
1918@noindent
8241495d
RS
1919A string starting with two or more dashes specifies a separator line;
1920see @ref{Menu Separators}.
969fe9b5
RS
1921
1922 To define a real menu item which can be selected, the extended format
1923item looks like this:
1924
1925@example
1926(menu-item @var{item-name} @var{real-binding}
1927 . @var{item-property-list})
1928@end example
1929
1930@noindent
1931Here, @var{item-name} is an expression which evaluates to the menu item
1932string. Thus, the string need not be a constant. The third element,
1933@var{real-binding}, is the command to execute. The tail of the list,
1934@var{item-property-list}, has the form of a property list which contains
1935other information. Here is a table of the properties that are supported:
1936
1937@table @code
8241495d 1938@item :enable @var{form}
969fe9b5 1939The result of evaluating @var{form} determines whether the item is
8241495d
RS
1940enabled (non-@code{nil} means yes). If the item is not enabled,
1941you can't really click on it.
969fe9b5 1942
8241495d 1943@item :visible @var{form}
969fe9b5
RS
1944The result of evaluating @var{form} determines whether the item should
1945actually appear in the menu (non-@code{nil} means yes). If the item
1946does not appear, then the menu is displayed as if this item were
1947not defined at all.
1948
1949@item :help @var{help}
b08d86c6
DL
1950The value of this property, @var{help}, specifies a ``help-echo'' string
1951to display while the mouse is on that item. This is displayed in the
1952same way as @code{help-echo} text properties (@pxref{Help display}).
1953Note that this must be a constant string, unlike the @code{help-echo}
1954property for text and overlays.
969fe9b5
RS
1955
1956@item :button (@var{type} . @var{selected})
1957This property provides a way to define radio buttons and toggle buttons.
a40d4712 1958The @sc{car}, @var{type}, says which: it should be @code{:toggle} or
969fe9b5
RS
1959@code{:radio}. The @sc{cdr}, @var{selected}, should be a form; the
1960result of evaluating it says whether this button is currently selected.
1961
a9f0a989
RS
1962A @dfn{toggle} is a menu item which is labeled as either ``on'' or ``off''
1963according to the value of @var{selected}. The command itself should
1964toggle @var{selected}, setting it to @code{t} if it is @code{nil},
1965and to @code{nil} if it is @code{t}. Here is how the menu item
1966to toggle the @code{debug-on-error} flag is defined:
1967
1968@example
1969(menu-item "Debug on Error" toggle-debug-on-error
1970 :button (:toggle
1971 . (and (boundp 'debug-on-error)
08f0f5e9 1972 debug-on-error)))
a9f0a989
RS
1973@end example
1974
1975@noindent
1976This works because @code{toggle-debug-on-error} is defined as a command
1977which toggles the variable @code{debug-on-error}.
1978
1979@dfn{Radio buttons} are a group of menu items, in which at any time one
1980and only one is ``selected.'' There should be a variable whose value
1981says which one is selected at any time. The @var{selected} form for
1982each radio button in the group should check whether the variable has the
1983right value for selecting that button. Clicking on the button should
1984set the variable so that the button you clicked on becomes selected.
1985
1986@item :key-sequence @var{key-sequence}
1987This property specifies which key sequence is likely to be bound to the
1988same command invoked by this menu item. If you specify the right key
1989sequence, that makes preparing the menu for display run much faster.
1990
1991If you specify the wrong key sequence, it has no effect; before Emacs
1992displays @var{key-sequence} in the menu, it verifies that
1993@var{key-sequence} is really equivalent to this menu item.
1994
1995@item :key-sequence nil
1996This property indicates that there is normally no key binding which is
1997equivalent to this menu item. Using this property saves time in
1998preparing the menu for display, because Emacs does not need to search
1999the keymaps for a keyboard equivalent for this menu item.
2000
2001However, if the user has rebound this item's definition to a key
2002sequence, Emacs ignores the @code{:keys} property and finds the keyboard
2003equivalent anyway.
2004
2005@item :keys @var{string}
2006This property specifies that @var{string} is the string to display
2007as the keyboard equivalent for this menu item. You can use
2008the @samp{\\[...]} documentation construct in @var{string}.
2009
969fe9b5
RS
2010@item :filter @var{filter-fn}
2011This property provides a way to compute the menu item dynamically.
2012The property value @var{filter-fn} should be a function of one argument;
2013when it is called, its argument will be @var{real-binding}. The
2014function should return the binding to use instead.
bf58181a
RS
2015
2016Emacs can call this function at any time that it does redisplay or
2017operates on menu data structures, so you should write it so it can
2018safely be called at any time.
969fe9b5
RS
2019@end table
2020
8241495d
RS
2021@node Menu Separators
2022@subsubsection Menu Separators
2023@cindex menu separators
2024
2025 A menu separator is a kind of menu item that doesn't display any
4810d170 2026text---instead, it divides the menu into subparts with a horizontal line.
8241495d
RS
2027A separator looks like this in the menu keymap:
2028
2029@example
2030(menu-item @var{separator-type})
2031@end example
2032
2033@noindent
2034where @var{separator-type} is a string starting with two or more dashes.
2035
2036 In the simplest case, @var{separator-type} consists of only dashes.
2037That specifies the default kind of separator. (For compatibility,
2038@code{""} and @code{-} also count as separators.)
2039
35c14f98
RS
2040 Certain other values of @var{separator-type} specify a different
2041style of separator. Here is a table of them:
8241495d
RS
2042
2043@table @code
2044@item "--no-line"
2045@itemx "--space"
2046An extra vertical space, with no actual line.
2047
2048@item "--single-line"
2049A single line in the menu's foreground color.
2050
2051@item "--double-line"
2052A double line in the menu's foreground color.
2053
2054@item "--single-dashed-line"
2055A single dashed line in the menu's foreground color.
2056
2057@item "--double-dashed-line"
2058A double dashed line in the menu's foreground color.
2059
2060@item "--shadow-etched-in"
2061A single line with a 3D sunken appearance. This is the default,
2062used separators consisting of dashes only.
2063
2064@item "--shadow-etched-out"
2065A single line with a 3D raised appearance.
2066
2067@item "--shadow-etched-in-dash"
2068A single dashed line with a 3D sunken appearance.
2069
2070@item "--shadow-etched-out-dash"
2071A single dashed line with a 3D raised appearance.
2072
2073@item "--shadow-double-etched-in"
2074Two lines with a 3D sunken appearance.
2075
2076@item "--shadow-double-etched-out"
2077Two lines with a 3D raised appearance.
2078
2079@item "--shadow-double-etched-in-dash"
2080Two dashed lines with a 3D sunken appearance.
2081
2082@item "--shadow-double-etched-out-dash"
2083Two dashed lines with a 3D raised appearance.
2084@end table
2085
2086 You can also give these names in another style, adding a colon after
2087the double-dash and replacing each single dash with capitalization of
2088the following word. Thus, @code{"--:singleLine"}, is equivalent to
2089@code{"--single-line"}.
2090
2091 Some systems and display toolkits don't really handle all of these
2092separator types. If you use a type that isn't supported, the menu
2093displays a similar kind of separator that is supported.
2094
a9f0a989
RS
2095@node Alias Menu Items
2096@subsubsection Alias Menu Items
2097
2098 Sometimes it is useful to make menu items that use the ``same''
2099command but with different enable conditions. The best way to do this
2100in Emacs now is with extended menu items; before that feature existed,
2101it could be done by defining alias commands and using them in menu
2102items. Here's an example that makes two aliases for
2103@code{toggle-read-only} and gives them different enable conditions:
2104
2105@example
2106(defalias 'make-read-only 'toggle-read-only)
2107(put 'make-read-only 'menu-enable '(not buffer-read-only))
2108(defalias 'make-writable 'toggle-read-only)
2109(put 'make-writable 'menu-enable 'buffer-read-only)
2110@end example
2111
2112When using aliases in menus, often it is useful to display the
2113equivalent key bindings for the ``real'' command name, not the aliases
2114(which typically don't have any key bindings except for the menu
2115itself). To request this, give the alias symbol a non-@code{nil}
2116@code{menu-alias} property. Thus,
2117
2118@example
2119(put 'make-read-only 'menu-alias t)
2120(put 'make-writable 'menu-alias t)
2121@end example
2122
2123@noindent
2124causes menu items for @code{make-read-only} and @code{make-writable} to
2125show the keyboard bindings for @code{toggle-read-only}.
2126
87b2d5ff
RS
2127@node Mouse Menus
2128@subsection Menus and the Mouse
2129
969fe9b5
RS
2130 The usual way to make a menu keymap produce a menu is to make it the
2131definition of a prefix key. (A Lisp program can explicitly pop up a
2132menu and receive the user's choice---see @ref{Pop-Up Menus}.)
87b2d5ff 2133
969fe9b5 2134 If the prefix key ends with a mouse event, Emacs handles the menu keymap
87b2d5ff
RS
2135by popping up a visible menu, so that the user can select a choice with
2136the mouse. When the user clicks on a menu item, the event generated is
2137whatever character or symbol has the binding that brought about that
2138menu item. (A menu item may generate a series of events if the menu has
2139multiple levels or comes from the menu bar.)
2140
969fe9b5 2141 It's often best to use a button-down event to trigger the menu. Then
87b2d5ff
RS
2142the user can select a menu item by releasing the button.
2143
969fe9b5 2144 A single keymap can appear as multiple menu panes, if you explicitly
87b2d5ff
RS
2145arrange for this. The way to do this is to make a keymap for each pane,
2146then create a binding for each of those maps in the main keymap of the
2147menu. Give each of these bindings an item string that starts with
2148@samp{@@}. The rest of the item string becomes the name of the pane.
2149See the file @file{lisp/mouse.el} for an example of this. Any ordinary
2150bindings with @samp{@@}-less item strings are grouped into one pane,
2151which appears along with the other panes explicitly created for the
2152submaps.
2153
969fe9b5 2154 X toolkit menus don't have panes; instead, they can have submenus.
87b2d5ff
RS
2155Every nested keymap becomes a submenu, whether the item string starts
2156with @samp{@@} or not. In a toolkit version of Emacs, the only thing
2157special about @samp{@@} at the beginning of an item string is that the
2158@samp{@@} doesn't appear in the menu item.
2159
8a36c244
RS
2160 Multiple keymaps that define the same menu prefix key produce
2161separate panes or separate submenus.
87b2d5ff
RS
2162
2163@node Keyboard Menus
2164@subsection Menus and the Keyboard
2165
2166When a prefix key ending with a keyboard event (a character or function
2167key) has a definition that is a menu keymap, the user can use the
2168keyboard to choose a menu item.
2169
e465fdc2
GM
2170Emacs displays the menu's overall prompt string followed by the
2171alternatives (the item strings of the bindings) in the echo area. If
2172the bindings don't all fit at once, the user can type @key{SPC} to see
2173the next line of alternatives. Successive uses of @key{SPC} eventually
2174get to the end of the menu and then cycle around to the beginning. (The
2175variable @code{menu-prompt-more-char} specifies which character is used
2176for this; @key{SPC} is the default.)
87b2d5ff
RS
2177
2178When the user has found the desired alternative from the menu, he or she
2179should type the corresponding character---the one whose binding is that
2180alternative.
2181
bfe721d1 2182@ignore
87b2d5ff
RS
2183In a menu intended for keyboard use, each menu item must clearly
2184indicate what character to type. The best convention to use is to make
bfe721d1
KH
2185the character the first letter of the item string---that is something
2186users will understand without being told. We plan to change this; by
2187the time you read this manual, keyboard menus may explicitly name the
2188key for each alternative.
2189@end ignore
87b2d5ff
RS
2190
2191This way of using menus in an Emacs-like editor was inspired by the
2192Hierarkey system.
73804d4b 2193
87b2d5ff
RS
2194@defvar menu-prompt-more-char
2195This variable specifies the character to use to ask to see
2196the next line of a menu. Its initial value is 32, the code
2197for @key{SPC}.
2198@end defvar
73804d4b 2199
87b2d5ff
RS
2200@node Menu Example
2201@subsection Menu Example
f9f59935 2202@cindex menu definition example
73804d4b 2203
f9f59935 2204 Here is a complete example of defining a menu keymap. It is the
8a36c244
RS
2205definition of the @samp{Replace} submenu in the @samp{Edit} menu in
2206the menu bar, and it uses the extended menu item format
2207(@pxref{Extended Menu Items}). First we create the keymap, and give
2208it a name:
73804d4b 2209
8a36c244
RS
2210@smallexample
2211(defvar menu-bar-replace-menu (make-sparse-keymap "Replace"))
2212@end smallexample
73804d4b 2213
969fe9b5
RS
2214@noindent
2215Next we define the menu items:
73804d4b 2216
8a36c244
RS
2217@smallexample
2218(define-key menu-bar-replace-menu [tags-repl-continue]
2219 '(menu-item "Continue Replace" tags-loop-continue
2220 :help "Continue last tags replace operation"))
2221(define-key menu-bar-replace-menu [tags-repl]
2222 '(menu-item "Replace in tagged files" tags-query-replace
2223 :help "Interactively replace a regexp in all tagged files"))
2224(define-key menu-bar-replace-menu [separator-replace-tags]
2225 '(menu-item "--"))
2226;; @r{@dots{}}
2227@end smallexample
f9f59935
RS
2228
2229@noindent
2230Note the symbols which the bindings are ``made for''; these appear
2231inside square brackets, in the key sequence being defined. In some
2232cases, this symbol is the same as the command name; sometimes it is
2233different. These symbols are treated as ``function keys'', but they are
2234not real function keys on the keyboard. They do not affect the
2235functioning of the menu itself, but they are ``echoed'' in the echo area
2236when the user selects from the menu, and they appear in the output of
2237@code{where-is} and @code{apropos}.
2238
db8af011
LT
2239 The menu in this example is intended for use with the mouse. If a
2240menu is intended for use with the keyboard, that is, if it is bound to
2241a key sequence ending with a keyboard event, then the menu items
2242should be bound to characters or ``real'' function keys, that can be
2243typed with the keyboard.
2244
f9f59935
RS
2245 The binding whose definition is @code{("--")} is a separator line.
2246Like a real menu item, the separator has a key symbol, in this case
8a36c244
RS
2247@code{separator-replace-tags}. If one menu has two separators, they
2248must have two different key symbols.
f9f59935
RS
2249
2250 Here is how we make this menu appear as an item in the parent menu:
2251
2252@example
8a36c244
RS
2253(define-key menu-bar-edit-menu [replace]
2254 (list 'menu-item "Replace" menu-bar-replace-menu))
f9f59935
RS
2255@end example
2256
2257@noindent
2258Note that this incorporates the submenu keymap, which is the value of
8a36c244
RS
2259the variable @code{menu-bar-replace-menu}, rather than the symbol
2260@code{menu-bar-replace-menu} itself. Using that symbol in the parent
2261menu item would be meaningless because @code{menu-bar-replace-menu} is
2262not a command.
f9f59935 2263
8a36c244 2264 If you wanted to attach the same replace menu to a mouse click, you
969fe9b5 2265can do it this way:
f9f59935
RS
2266
2267@example
a9f0a989 2268(define-key global-map [C-S-down-mouse-1]
8a36c244 2269 menu-bar-replace-menu)
f9f59935 2270@end example
73804d4b 2271
87b2d5ff
RS
2272@node Menu Bar
2273@subsection The Menu Bar
2274@cindex menu bar
73804d4b 2275
87b2d5ff
RS
2276 Most window systems allow each frame to have a @dfn{menu bar}---a
2277permanently displayed menu stretching horizontally across the top of the
2278frame. The items of the menu bar are the subcommands of the fake
8a36c244 2279``function key'' @code{menu-bar}, as defined in the active keymaps.
73804d4b 2280
87b2d5ff
RS
2281 To add an item to the menu bar, invent a fake ``function key'' of your
2282own (let's call it @var{key}), and make a binding for the key sequence
2283@code{[menu-bar @var{key}]}. Most often, the binding is a menu keymap,
2284so that pressing a button on the menu bar item leads to another menu.
73804d4b 2285
87b2d5ff
RS
2286 When more than one active keymap defines the same fake function key
2287for the menu bar, the item appears just once. If the user clicks on
969fe9b5 2288that menu bar item, it brings up a single, combined menu containing
87b2d5ff 2289all the subcommands of that item---the global subcommands, the local
969fe9b5 2290subcommands, and the minor mode subcommands.
73804d4b 2291
22697dac
KH
2292 The variable @code{overriding-local-map} is normally ignored when
2293determining the menu bar contents. That is, the menu bar is computed
2294from the keymaps that would be active if @code{overriding-local-map}
2295were @code{nil}. @xref{Active Keymaps}.
2296
87b2d5ff
RS
2297 In order for a frame to display a menu bar, its @code{menu-bar-lines}
2298parameter must be greater than zero. Emacs uses just one line for the
2299menu bar itself; if you specify more than one line, the other lines
2300serve to separate the menu bar from the windows in the frame. We
fdb48508 2301recommend 1 or 2 as the value of @code{menu-bar-lines}. @xref{Layout
bfe721d1 2302Parameters}.
73804d4b 2303
87b2d5ff 2304 Here's an example of setting up a menu bar item:
73804d4b 2305
87b2d5ff 2306@example
73804d4b 2307@group
87b2d5ff
RS
2308(modify-frame-parameters (selected-frame)
2309 '((menu-bar-lines . 2)))
73804d4b 2310@end group
73804d4b 2311
73804d4b 2312@group
87b2d5ff
RS
2313;; @r{Make a menu keymap (with a prompt string)}
2314;; @r{and make it the menu bar item's definition.}
2315(define-key global-map [menu-bar words]
2316 (cons "Words" (make-sparse-keymap "Words")))
73804d4b 2317@end group
87b2d5ff 2318
73804d4b 2319@group
969fe9b5 2320;; @r{Define specific subcommands in this menu.}
87b2d5ff
RS
2321(define-key global-map
2322 [menu-bar words forward]
2323 '("Forward word" . forward-word))
73804d4b 2324@end group
73804d4b 2325@group
87b2d5ff
RS
2326(define-key global-map
2327 [menu-bar words backward]
2328 '("Backward word" . backward-word))
73804d4b 2329@end group
87b2d5ff 2330@end example
73804d4b 2331
87b2d5ff
RS
2332 A local keymap can cancel a menu bar item made by the global keymap by
2333rebinding the same fake function key with @code{undefined} as the
2334binding. For example, this is how Dired suppresses the @samp{Edit} menu
2335bar item:
73804d4b 2336
87b2d5ff
RS
2337@example
2338(define-key dired-mode-map [menu-bar edit] 'undefined)
2339@end example
73804d4b 2340
87b2d5ff
RS
2341@noindent
2342@code{edit} is the fake function key used by the global map for the
2343@samp{Edit} menu bar item. The main reason to suppress a global
2344menu bar item is to regain space for mode-specific items.
73804d4b 2345
87b2d5ff
RS
2346@defvar menu-bar-final-items
2347Normally the menu bar shows global items followed by items defined by the
2348local maps.
73804d4b 2349
87b2d5ff
RS
2350This variable holds a list of fake function keys for items to display at
2351the end of the menu bar rather than in normal sequence. The default
969fe9b5 2352value is @code{(help-menu)}; thus, the @samp{Help} menu item normally appears
87b2d5ff
RS
2353at the end of the menu bar, following local menu items.
2354@end defvar
73804d4b 2355
bd98ada9 2356@defvar menu-bar-update-hook
35c14f98
RS
2357This normal hook is run by redisplay to update the menu bar contents,
2358before redisplaying the menu bar. You can use it to update submenus
2359whose contents should vary. Since this hook is run frequently, we
2360advise you to ensure that the functions it calls do not take much time
2361in the usual case.
bd98ada9
RS
2362@end defvar
2363
8241495d
RS
2364@node Tool Bar
2365@subsection Tool bars
2366@cindex tool bar
2367
2368 A @dfn{tool bar} is a row of icons at the top of a frame, that execute
2369commands when you click on them---in effect, a kind of graphical menu
35c14f98 2370bar.
8241495d
RS
2371
2372 The frame parameter @code{tool-bar-lines} (X resource @samp{toolBar})
05aea714 2373controls how many lines' worth of height to reserve for the tool bar. A
8241495d
RS
2374zero value suppresses the tool bar. If the value is nonzero, and
2375@code{auto-resize-tool-bars} is non-@code{nil}, the tool bar expands and
2376contracts automatically as needed to hold the specified contents.
2377
2378 The tool bar contents are controlled by a menu keymap attached to a
2379fake ``function key'' called @code{tool-bar} (much like the way the menu
2380bar is controlled). So you define a tool bar item using
2381@code{define-key}, like this:
2382
2383@example
2384(define-key global-map [tool-bar @var{key}] @var{item})
2385@end example
2386
2387@noindent
2388where @var{key} is a fake ``function key'' to distinguish this item from
2389other items, and @var{item} is a menu item key binding (@pxref{Extended
2390Menu Items}), which says how to display this item and how it behaves.
2391
2392 The usual menu keymap item properties, @code{:visible},
2393@code{:enable}, @code{:button}, and @code{:filter}, are useful in
2394tool bar bindings and have their normal meanings. The @var{real-binding}
2395in the item must be a command, not a keymap; in other words, it does not
2396work to define a tool bar icon as a prefix key.
2397
b08d86c6
DL
2398 The @code{:help} property specifies a ``help-echo'' string to display
2399while the mouse is on that item. This is displayed in the same way as
2400@code{help-echo} text properties (@pxref{Help display}).
8241495d
RS
2401
2402 In addition, you should use the @code{:image} property;
2403this is how you specify the image to display in the tool bar:
2404
2405@table @code
2406@item :image @var{image}
2407@var{images} is either a single image specification or a vector of four
2408image specifications. If you use a vector of four,
2409one of them is used, depending on circumstances:
2410
2411@table @asis
2412@item item 0
05aea714 2413Used when the item is enabled and selected.
8241495d
RS
2414@item item 1
2415Used when the item is enabled and deselected.
2416@item item 2
2417Used when the item is disabled and selected.
2418@item item 3
2419Used when the item is disabled and deselected.
2420@end table
2421@end table
2422
a4776185
GM
2423If @var{image} is a single image specification, Emacs draws the tool bar
2424button in disabled state by applying an edge-detection algorithm to the
2425image.
2426
9e445e29
DL
2427The default tool bar is defined so that items specific to editing do not
2428appear for major modes whose command symbol has a @code{mode-class}
2429property of @code{special} (@pxref{Major Mode Conventions}). Major
2430modes may add items to the global bar by binding @code{[tool-bar
2431@var{foo}]} in their local map. It makes sense for some major modes to
2432replace the default tool bar items completely, since not many can be
2433accommodated conveniently, and the default bindings make this easy by
2434using an indirection through @code{tool-bar-map}.
2435
2436@defvar tool-bar-map
2437@tindex tool-bar-map
2438By default, the global map binds @code{[tool-bar]} as follows:
2439@example
2440(global-set-key [tool-bar]
2441 '(menu-item "tool bar" ignore
2442 :filter (lambda (ignore) tool-bar-map)))
2443@end example
2444@noindent
2445Thus the tool bar map is derived dynamically from the value of variable
2446@code{tool-bar-map} and you should normally adjust the default (global)
2447tool bar by changing that map. Major modes may replace the global bar
2448completely by making @code{tool-bar-map} buffer-local and set to a
2449keymap containing only the desired items. Info mode provides an
2450example.
2451@end defvar
2452
2453There are two convenience functions for defining tool bar items, as
2454follows.
2455
2456@defun tool-bar-add-item icon def key &rest props
2457@tindex tool-bar-add-item
2458This function adds an item to the tool bar by modifying
2459@code{tool-bar-map}. The image to use is defined by @var{icon}, which
6d682d42 2460is the base name of an XPM, XBM or PBM image file to be located by
9e445e29
DL
2461@code{find-image}. Given a value @samp{"exit"}, say, @file{exit.xpm},
2462@file{exit.pbm} and @file{exit.xbm} would be searched for in that order
2463on a color display. On a monochrome display, the search order is
2464@samp{.pbm}, @samp{.xbm} and @samp{.xpm}. The binding to use is the
2465command @var{def}, and @var{key} is the fake function key symbol in the
2466prefix keymap. The remaining arguments @var{props} are additional
2467property list elements to add to the menu item specification.
2468
f3544d11 2469To define items in some local map, bind @code{tool-bar-map} with
9e445e29
DL
2470@code{let} around calls of this function:
2471@example
177c0ea7 2472(defvar foo-tool-bar-map
9e445e29
DL
2473 (let ((tool-bar-map (make-sparse-keymap)))
2474 (tool-bar-add-item @dots{})
2475 @dots{}
2476 tool-bar-map))
2477@end example
2478@end defun
2479
2480@defun tool-bar-add-item-from-menu command icon &optional map &rest props
2481@tindex tool-bar-add-item-from-menu
229644e7 2482This function is a convenience for defining tool bar items which are
9e445e29
DL
2483consistent with existing menu bar bindings. The binding of
2484@var{command} is looked up in the menu bar in @var{map} (default
2485@code{global-map}) and modified to add an image specification for
229644e7 2486@var{icon}, which is found in the same way as by
9e445e29 2487@code{tool-bar-add-item}. The resulting binding is then placed in
229644e7
RS
2488@code{tool-bar-map}, so use this function only for global tool bar
2489items.
2490
2491@var{map} must contain an appropriate keymap bound to
2492@code{[menu-bar]}. The remaining arguments @var{props} are additional
2493property list elements to add to the menu item specification.
2494@end defun
2495
2496@defun tool-bar-local-item-from-menu command icon in-map &optional from-map &rest props
2497This function is used for making non-global tool bar items. Use it
2498like @code{tool-bar-add-item-from-menu} except that @var{in-map}
2499specifies the local map to make the definition in. The argument
db8af011 2500@var{from-map} is like the @var{map} argument of
229644e7 2501@code{tool-bar-add-item-from-menu}.
9e445e29
DL
2502@end defun
2503
8241495d
RS
2504@tindex auto-resize-tool-bar
2505@defvar auto-resize-tool-bar
2506If this variable is non-@code{nil}, the tool bar automatically resizes to
2507show all defined tool bar items---but not larger than a quarter of the
2508frame's height.
2509@end defvar
2510
6d682d42
RS
2511@tindex auto-raise-tool-bar-buttons
2512@defvar auto-raise-tool-bar-buttons
8241495d
RS
2513If this variable is non-@code{nil}, tool bar items display
2514in raised form when the mouse moves over them.
2515@end defvar
2516
6d682d42
RS
2517@tindex tool-bar-button-margin
2518@defvar tool-bar-button-margin
8241495d 2519This variable specifies an extra margin to add around tool bar items.
6d682d42 2520The value is an integer, a number of pixels. The default is 4.
8241495d
RS
2521@end defvar
2522
6d682d42
RS
2523@tindex tool-bar-button-relief
2524@defvar tool-bar-button-relief
8241495d 2525This variable specifies the shadow width for tool bar items.
6d682d42 2526The value is an integer, a number of pixels. The default is 1.
7e50c033
KS
2527@end defvar
2528
2529@tindex tool-bar-border
2530@defvar tool-bar-border
2531This variable specifies the height of the border drawn below the tool
2532bar area. An integer value specifies height as a number of pixels.
2533If the value is one of @code{internal-border-width} (the default) or
2534@code{border-width}, the tool bar border height corresponds to the
2535corresponding frame parameter.
8241495d
RS
2536@end defvar
2537
2538 You can define a special meaning for clicking on a tool bar item with
2539the shift, control, meta, etc., modifiers. You do this by setting up
2540additional items that relate to the original item through the fake
2541function keys. Specifically, the additional items should use the
2542modified versions of the same fake function key used to name the
2543original item.
2544
2545 Thus, if the original item was defined this way,
2546
2547@example
2548(define-key global-map [tool-bar shell]
2549 '(menu-item "Shell" shell
2550 :image (image :type xpm :file "shell.xpm")))
2551@end example
2552
2553@noindent
2554then here is how you can define clicking on the same tool bar image with
2555the shift modifier:
2556
2557@example
2558(define-key global-map [tool-bar S-shell] 'some-command)
2559@end example
2560
2561@xref{Function Keys}, for more information about how to add modifiers to
2562function keys.
2563
87b2d5ff
RS
2564@node Modifying Menus
2565@subsection Modifying Menus
73804d4b 2566
87b2d5ff
RS
2567 When you insert a new item in an existing menu, you probably want to
2568put it in a particular place among the menu's existing items. If you
2569use @code{define-key} to add the item, it normally goes at the front of
f9f59935 2570the menu. To put it elsewhere in the menu, use @code{define-key-after}:
73804d4b 2571
e5a00c9c 2572@defun define-key-after map key binding &optional after
87b2d5ff
RS
2573Define a binding in @var{map} for @var{key}, with value @var{binding},
2574just like @code{define-key}, but position the binding in @var{map} after
f9f59935
RS
2575the binding for the event @var{after}. The argument @var{key} should be
2576of length one---a vector or string with just one element. But
969fe9b5
RS
2577@var{after} should be a single event type---a symbol or a character, not
2578a sequence. The new binding goes after the binding for @var{after}. If
32f44537
DL
2579@var{after} is @code{t} or is omitted, then the new binding goes last, at
2580the end of the keymap. However, new bindings are added before any
2581inherited keymap.
b2955417 2582
969fe9b5 2583Here is an example:
73804d4b 2584
87b2d5ff
RS
2585@example
2586(define-key-after my-menu [drink]
32f44537 2587 '("Drink" . drink-command) 'eat)
87b2d5ff 2588@end example
73804d4b 2589
87b2d5ff 2590@noindent
969fe9b5
RS
2591makes a binding for the fake function key @key{DRINK} and puts it
2592right after the binding for @key{EAT}.
f9f59935 2593
87b2d5ff
RS
2594Here is how to insert an item called @samp{Work} in the @samp{Signals}
2595menu of Shell mode, after the item @code{break}:
73804d4b 2596
87b2d5ff
RS
2597@example
2598(define-key-after
2599 (lookup-key shell-mode-map [menu-bar signals])
2600 [work] '("Work" . work-command) 'break)
2601@end example
87b2d5ff 2602@end defun
ab5796a9
MB
2603
2604@ignore
2605 arch-tag: cfb87287-9364-4e46-9e93-6c2f7f6ae794
2606@end ignore