annotate man/lispref/keymaps.texi @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 169c0442b401
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 @c -*-texinfo-*-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 @c This is part of the XEmacs Lisp Reference Manual.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 @c Copyright (C) 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 @c See the file lispref.texi for copying conditions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 @setfilename ../../info/keymaps.info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 @node Keymaps, Menus, Command Loop, Top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 @chapter Keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 @cindex keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 @c This section is largely different from the one in FSF Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 The bindings between input events and commands are recorded in data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 structures called @dfn{keymaps}. Each binding in a keymap associates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 (or @dfn{binds}) an individual event type either with another keymap or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 with a command. When an event is bound to a keymap, that keymap is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 used to look up the next input event; this continues until a command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 is found. The whole process is called @dfn{key lookup}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 * Keymap Terminology:: Definitions of terms pertaining to keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 * Format of Keymaps:: What a keymap looks like as a Lisp object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 * Creating Keymaps:: Functions to create and copy keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 * Inheritance and Keymaps:: How one keymap can inherit the bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 of another keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 * Key Sequences:: How to specify key sequences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 * Prefix Keys:: Defining a key with a keymap as its definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 * Active Keymaps:: Each buffer has a local keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 to override the standard (global) bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 A minor mode can also override them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 * Key Lookup:: How extracting elements from keymaps works.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 * Functions for Key Lookup:: How to request key lookup.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 * Changing Key Bindings:: Redefining a key in a keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 * Key Binding Commands:: Interactive interfaces for redefining keys.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 * Scanning Keymaps:: Looking through all keymaps, for printing help.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 * Other Keymap Functions:: Miscellaneous keymap functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 @node Keymap Terminology
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 @section Keymap Terminology
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 @cindex key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 @cindex keystroke
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 @cindex key binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 @cindex binding of a key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 @cindex complete key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 @cindex undefined key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 A @dfn{keymap} is a table mapping event types to definitions (which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 can be any Lisp objects, though only certain types are meaningful for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 execution by the command loop). Given an event (or an event type) and a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 keymap, XEmacs can get the event's definition. Events mapped in keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 include keypresses, button presses, and button releases
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (@pxref{Events}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 A sequence of input events that form a unit is called a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 @dfn{key sequence}, or @dfn{key} for short. A sequence of one event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 is always a key sequence, and so are some multi-event sequences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 A keymap determines a binding or definition for any key sequence. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 the key sequence is a single event, its binding is the definition of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 event in the keymap. The binding of a key sequence of more than one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 event is found by an iterative process: the binding of the first event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 is found, and must be a keymap; then the second event's binding is found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 in that keymap, and so on until all the events in the key sequence are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 used up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 If the binding of a key sequence is a keymap, we call the key sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 a @dfn{prefix key}. Otherwise, we call it a @dfn{complete key} (because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 no more events can be added to it). If the binding is @code{nil},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 we call the key @dfn{undefined}. Examples of prefix keys are @kbd{C-c},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 @kbd{C-x}, and @kbd{C-x 4}. Examples of defined complete keys are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 @kbd{X}, @key{RET}, and @kbd{C-x 4 C-f}. Examples of undefined complete
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 keys are @kbd{C-x C-g}, and @kbd{C-c 3}. @xref{Prefix Keys}, for more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 The rule for finding the binding of a key sequence assumes that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 intermediate bindings (found for the events before the last) are all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 keymaps; if this is not so, the sequence of events does not form a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 unit---it is not really a key sequence. In other words, removing one or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 more events from the end of any valid key must always yield a prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 key. For example, @kbd{C-f C-n} is not a key; @kbd{C-f} is not a prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 key, so a longer sequence starting with @kbd{C-f} cannot be a key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 Note that the set of possible multi-event key sequences depends on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 bindings for prefix keys; therefore, it can be different for different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 keymaps, and can change when bindings are changed. However, a one-event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 sequence is always a key sequence, because it does not depend on any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 prefix keys for its well-formedness.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 At any time, several primary keymaps are @dfn{active}---that is, in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 use for finding key bindings. These are the @dfn{global map}, which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 shared by all buffers; the @dfn{local keymap}, which is usually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 associated with a specific major mode; and zero or more @dfn{minor mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 keymaps}, which belong to currently enabled minor modes. (Not all minor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 modes have keymaps.) The local keymap bindings shadow (i.e., take
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 precedence over) the corresponding global bindings. The minor mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 keymaps shadow both local and global keymaps. @xref{Active Keymaps},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 for details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 @node Format of Keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 @section Format of Keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 @cindex format of keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 @cindex keymap format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 A keymap is a primitive type that associates events with their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 bindings. Note that this is different from Emacs 18 and FSF Emacs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 where keymaps are lists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 @defun keymapp object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 This function returns @code{t} if @var{object} is a keymap, @code{nil}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 @node Creating Keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 @section Creating Keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 @cindex creating keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 Here we describe the functions for creating keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 @defun make-keymap &optional name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 This function constructs and returns a new keymap object. All entries
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 in it are @code{nil}, meaning ``command undefined''.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Optional argument @var{name} specifies a name to assign to the keymap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 as in @code{set-keymap-name}. This name is only a debugging
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 convenience; it is not used except when printing the keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 @defun make-sparse-keymap &optional name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 This function constructs and returns a new keymap object. All entries
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 in it are @code{nil}, meaning ``command undefined''. The only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 difference between this function and @code{make-keymap} is that this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 function returns a ``smaller'' keymap (one that is expected to contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 fewer entries). As keymaps dynamically resize, the distinction is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 great.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 Optional argument @var{name} specifies a name to assign to the keymap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 as in @code{set-keymap-name}. This name is only a debugging
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 convenience; it is not used except when printing the keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 @defun set-keymap-name keymap new-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 This function assigns a ``name'' to a keymap. The name is only a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 debugging convenience; it is not used except when printing the keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 @defun keymap-name keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 This function returns the ``name'' of a keymap, as assigned using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 @code{set-keymap-name}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 @defun copy-keymap keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 This function returns a copy of @var{keymap}. Any keymaps that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 appear directly as bindings in @var{keymap} are also copied recursively,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 and so on to any number of levels. However, recursive copying does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 take place when the definition of a character is a symbol whose function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 definition is a keymap; the same symbol appears in the new copy.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (setq map (copy-keymap (current-local-map)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 @result{} #<keymap 3 entries 0x21f80>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (eq map (current-local-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 @ignore @c Doesn't work!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (equal map (current-local-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 @node Inheritance and Keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 @section Inheritance and Keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 @cindex keymap inheritance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 @cindex inheriting a keymap's bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 @cindex keymap parent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 @cindex parent of a keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 A keymap can inherit the bindings of other keymaps. The other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 keymaps are called the keymap's @dfn{parents}, and are set with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 @code{set-keymap-parents}. When searching for a binding for a key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 sequence in a particular keymap, that keymap itself will first be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 searched; then, if no binding was found in the map and it has parents,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 the first parent keymap will be searched; then that keymap's parent will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 be searched, and so on, until either a binding for the key sequence is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 found, or a keymap without a parent is encountered. At this point,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 the search will continue with the next parent of the most recently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 encountered keymap that has another parent, etc. Essentially, a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 depth-first search of all the ancestors of the keymap is conducted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 @code{(current-global-map)} is the default parent of all keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 @defun set-keymap-parents keymap parents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 This function sets the parent keymaps of @var{keymap} to the list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 @var{parents}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 If you change the bindings in one of the keymaps in @var{parents} using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 @code{define-key} or other key-binding functions, these changes are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 visible in @var{keymap} unless shadowed by bindings in that map or in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 earlier-searched ancestors. The converse is not true: if you use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 @code{define-key} to change @var{keymap}, that affects the bindings in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 that map, but has no effect on any of the keymaps in @var{parents}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 @defun keymap-parents keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 This function returns the list of parent keymaps of @var{keymap}, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 @code{nil} if @var{keymap} has no parents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 As an alternative to specifying a parent, you can also specify a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 @dfn{default binding} that is used whenever a key is not otherwise bound
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 in the keymap. This is useful for terminal emulators, for example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 which may want to trap all keystrokes and pass them on in some modified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 format. Note that if you specify a default binding for a keymap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 neither the keymap's parents nor the current global map are searched for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 key bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 @defun set-keymap-default-binding keymap command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 This function sets the default binding of @var{keymap} to @var{command},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 or @code{nil} if no default is desired.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 @defun keymap-default-binding keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 This function returns the default binding of @var{keymap}, or @code{nil}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 if it has none.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 @node Key Sequences
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 @section Key Sequences
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 @cindex key sequences
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 Contrary to popular belief, the world is not @sc{ASCII}. When running
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 under a window manager, XEmacs can tell the difference between, for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 example, the keystrokes @kbd{control-h}, @kbd{control-shift-h}, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 @kbd{backspace}. You can, in fact, bind different commands to each of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 these.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 A @dfn{key sequence} is a set of keystrokes. A @dfn{keystroke} is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 keysym and some set of modifiers (such as @key{CONTROL} and @key{META}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 A @dfn{keysym} is what is printed on the keys on your keyboard.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 A keysym may be represented by a symbol, or (if and only if it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 equivalent to an @sc{ASCII} character in the range 32 - 255) by a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 character or its equivalent @sc{ASCII} code. The @kbd{A} key may be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 represented by the symbol @code{A}, the character @code{?A}, or by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 number 65. The @kbd{break} key may be represented only by the symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 @code{break}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 A keystroke may be represented by a list: the last element of the list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 is the key (a symbol, character, or number, as above) and the preceding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 elements are the symbolic names of modifier keys (@key{CONTROL},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 @key{META}, @key{SUPER}, @key{HYPER}, @key{ALT}, and @key{SHIFT}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 Thus, the sequence @kbd{control-b} is represented by the forms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 @code{(control b)}, @code{(control ?b)}, and @code{(control 98)}. A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 keystroke may also be represented by an event object, as returned by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 @code{next-command-event} and @code{read-key-sequence} functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 Note that in this context, the keystroke @kbd{control-b} is @emph{not}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 represented by the number 2 (the @sc{ASCII} code for @samp{^B}) or the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 character @code{?\^B}. See below.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 The @key{SHIFT} modifier is somewhat of a special case. You should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 not (and cannot) use @code{(meta shift a)} to mean @code{(meta A)},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 since for characters that have @sc{ASCII} equivalents, the state of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 shift key is implicit in the keysym (@samp{a} vs. @samp{A}). You also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 cannot say @code{(shift =)} to mean @code{+}, as that sort of thing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 varies from keyboard to keyboard. The @key{SHIFT} modifier is for use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 only with characters that do not have a second keysym on the same key,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 such as @code{backspace} and @code{tab}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 A key sequence is a vector of keystrokes. As a degenerate case,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 elements of this vector may also be keysyms if they have no modifiers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 That is, the @kbd{A} keystroke is represented by all of these forms:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 A ?A 65 (A) (?A) (65)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 [A] [?A] [65] [(A)] [(?A)] [(65)]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 the @kbd{control-a} keystroke is represented by these forms:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (control A) (control ?A) (control 65)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 [(control A)] [(control ?A)] [(control 65)]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 the key sequence @kbd{control-c control-a} is represented by these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 forms:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 [(control c) (control a)] [(control ?c) (control ?a)]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 [(control 99) (control 65)] etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 Mouse button clicks work just like keypresses: @code{(control
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 button1)} means pressing the left mouse button while holding down the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 control key. @code{[(control c) (shift button3)]} means
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 @kbd{control-c}, hold @key{SHIFT}, click right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 Commands may be bound to the mouse-button up-stroke rather than the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 down-stroke as well. @code{button1} means the down-stroke, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 @code{button1up} means the up-stroke. Different commands may be bound
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 to the up and down strokes, though that is probably not what you want,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 so be careful.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 For backward compatibility, a key sequence may also be represented by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 a string. In this case, it represents the key sequence(s) that would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 produce that sequence of @sc{ASCII} characters in a purely @sc{ASCII}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 world. For example, a string containing the @sc{ASCII} backspace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 character, @code{"\^H"}, would represent two key sequences:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 @code{(control h)} and @code{backspace}. Binding a command to this will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 actually bind both of those key sequences. Likewise for the following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 pairs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 control h backspace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 control i tab
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 control m return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 control j linefeed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 control [ escape
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 control @@ control space
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 After binding a command to two key sequences with a form like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (define-key global-map "\^X\^I" 'command-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 it is possible to redefine only one of those sequences like so:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 (define-key global-map [(control x) (control i)] 'command-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (define-key global-map [(control x) tab] 'command-3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 Of course, all of this applies only when running under a window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 system. If you're talking to XEmacs through a @sc{TTY} connection, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 don't get any of these features.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 @defun event-matches-key-specifier-p event key-specifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 This function returns non-@code{nil} if @var{event} matches
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 @var{key-specifier}, which can be any valid form representing a key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 sequence. This can be useful, e.g., to determine if the user pressed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 @code{help-char} or @code{quit-char}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 @node Prefix Keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 @section Prefix Keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 @cindex prefix key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 A @dfn{prefix key} has an associated keymap that defines what to do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 with key sequences that start with the prefix key. For example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 @kbd{C-x} is a prefix key, and it uses a keymap that is also stored in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 the variable @code{ctl-x-map}. Here is a list of the standard prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 keys of XEmacs and their keymaps:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 @cindex @kbd{C-h}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 @code{help-map} is used for events that follow @kbd{C-h}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 @cindex @kbd{C-c}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 @vindex mode-specific-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 @code{mode-specific-map} is for events that follow @kbd{C-c}. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 map is not actually mode specific; its name was chosen to be informative
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 for the user in @kbd{C-h b} (@code{display-bindings}), where it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 describes the main use of the @kbd{C-c} prefix key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 @cindex @kbd{C-x}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 @vindex ctl-x-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 @findex Control-X-prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 @code{ctl-x-map} is the map used for events that follow @kbd{C-x}. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 map is also the function definition of @code{Control-X-prefix}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 @cindex @kbd{C-x 4}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 @vindex ctl-x-4-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 @code{ctl-x-4-map} is used for events that follow @kbd{C-x 4}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 @cindex @kbd{C-x 5}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 @vindex ctl-x-5-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 @code{ctl-x-5-map} is used for events that follow @kbd{C-x 5}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 @cindex @kbd{C-x n}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 @cindex @kbd{C-x r}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 @cindex @kbd{C-x a}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 The prefix keys @kbd{C-x n}, @kbd{C-x r} and @kbd{C-x a} use keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 that have no special name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 @vindex esc-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 @findex ESC-prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 @code{esc-map} is an evil hack that is present for compatibility
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 purposes with Emacs 18. Defining a key in @code{esc-map} is equivalent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 to defining the same key in @code{global-map} but with the @key{META}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 prefix added. You should @emph{not} use this in your code. (This map is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 also the function definition of @code{ESC-prefix}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 The binding of a prefix key is the keymap to use for looking up the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 events that follow the prefix key. (It may instead be a symbol whose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 function definition is a keymap. The effect is the same, but the symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 serves as a name for the prefix key.) Thus, the binding of @kbd{C-x} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 the symbol @code{Control-X-prefix}, whose function definition is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 keymap for @kbd{C-x} commands. (The same keymap is also the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 @code{ctl-x-map}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 Prefix key definitions can appear in any active keymap. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 definitions of @kbd{C-c}, @kbd{C-x}, @kbd{C-h} and @key{ESC} as prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 keys appear in the global map, so these prefix keys are always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 available. Major and minor modes can redefine a key as a prefix by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 putting a prefix key definition for it in the local map or the minor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 mode's map. @xref{Active Keymaps}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 If a key is defined as a prefix in more than one active map, then its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 various definitions are in effect merged: the commands defined in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 minor mode keymaps come first, followed by those in the local map's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 prefix definition, and then by those from the global map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 In the following example, we make @kbd{C-p} a prefix key in the local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 keymap, in such a way that @kbd{C-p} is identical to @kbd{C-x}. Then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 the binding for @kbd{C-p C-f} is the function @code{find-file}, just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 like @kbd{C-x C-f}. The key sequence @kbd{C-p 6} is not found in any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 active keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 (use-local-map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (local-set-key "\C-p" ctl-x-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (key-binding "\C-p\C-f")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 @result{} find-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 (key-binding "\C-p6")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 @defun define-prefix-command symbol &optional mapvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 @cindex prefix command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 This function defines @var{symbol} as a prefix command: it creates a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 keymap and stores it as @var{symbol}'s function definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 Storing the symbol as the binding of a key makes the key a prefix key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 that has a name. If optional argument @var{mapvar} is not specified,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 it also sets @var{symbol} as a variable, to have the keymap as its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 value. (If @var{mapvar} is given and is not @code{t}, its value is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 stored as the value of @var{symbol}.) The function returns @var{symbol}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 In Emacs version 18, only the function definition of @var{symbol} was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 set, not the value as a variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 @node Active Keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 @section Active Keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 @cindex active keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 @cindex global keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 @cindex local keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 XEmacs normally contains many keymaps; at any given time, just a few of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 them are @dfn{active} in that they participate in the interpretation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 of user input. These are the global keymap, the current buffer's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 local keymap, and the keymaps of any enabled minor modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 The @dfn{global keymap} holds the bindings of keys that are defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 regardless of the current buffer, such as @kbd{C-f}. The variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 @code{global-map} holds this keymap, which is always active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 Each buffer may have another keymap, its @dfn{local keymap}, which may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 contain new or overriding definitions for keys. The current buffer's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 local keymap is always active except when @code{overriding-local-map} or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 @code{overriding-terminal-local-map} overrides it. Extents and text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 properties can specify an alternative local map for certain parts of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 buffer; see @ref{Extents and Events}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 Each minor mode may have a keymap; if it does, the keymap is active
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 when the minor mode is enabled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 The variable @code{overriding-local-map} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 @code{overriding-terminal-local-map}, if non-@code{nil}, specify other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 local keymaps that override the buffer's local map and all the minor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 mode keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 All the active keymaps are used together to determine what command to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 execute when a key is entered. XEmacs searches these maps one by one, in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 order of decreasing precedence, until it finds a binding in one of the maps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 More specifically:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 For key-presses, the order of keymaps searched is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 the @code{keymap} property of any extent(s) or text properties at point;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 any applicable minor-mode maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 the current local map of the current buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 the current global map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 For mouse-clicks, the order of keymaps searched is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 the current local map of the @code{mouse-grabbed-buffer} if any;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 the @code{keymap} property of any extent(s) at the position of the click
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 (this includes modeline extents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 the @code{modeline-map} of the buffer corresponding to the modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 under the mouse (if the click happened over a modeline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 the value of @code{toolbar-map} in the current buffer (if the click
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 happened over a toolbar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 the current local map of the buffer under the mouse (does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 apply to toolbar clicks);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 any applicable minor-mode maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 the current global map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 Note that if @code{overriding-local-map} or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 @code{overriding-terminal-local-map} is non-@code{nil}, @emph{only}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 those two maps and the current global map are searched.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 The procedure for searching a single keymap is called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 @dfn{key lookup}; see @ref{Key Lookup}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 @cindex major mode keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 Since every buffer that uses the same major mode normally uses the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 same local keymap, you can think of the keymap as local to the mode. A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 change to the local keymap of a buffer (using @code{local-set-key}, for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 example) is seen also in the other buffers that share that keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 The local keymaps that are used for Lisp mode, C mode, and several
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 other major modes exist even if they have not yet been used. These
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 local maps are the values of the variables @code{lisp-mode-map},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 @code{c-mode-map}, and so on. For most other modes, which are less
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 frequently used, the local keymap is constructed only when the mode is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 used for the first time in a session.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 The minibuffer has local keymaps, too; they contain various completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 and exit commands. @xref{Intro to Minibuffers}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 @xref{Standard Keymaps}, for a list of standard keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 @defun current-keymaps &optional event-or-keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 This function returns a list of the current keymaps that will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 searched for bindings. This lists keymaps such as the current local map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 and the minor-mode maps, but does not list the parents of those keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 @var{event-or-keys} controls which keymaps will be listed. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 @var{event-or-keys} is a mouse event (or a vector whose last element is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 a mouse event), the keymaps for that mouse event will be listed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 Otherwise, the keymaps for key presses will be listed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 @defvar global-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 This variable contains the default global keymap that maps XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 keyboard input to commands. The global keymap is normally this keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 The default global keymap is a full keymap that binds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 @code{self-insert-command} to all of the printing characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 It is normal practice to change the bindings in the global map, but you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 should not assign this variable any value other than the keymap it starts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 out with.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 @defun current-global-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 This function returns the current global keymap. This is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 same as the value of @code{global-map} unless you change one or the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 other.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 (current-global-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 @result{} #<keymap global-map 639 entries 0x221>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 @defun current-local-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 This function returns the current buffer's local keymap, or @code{nil}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 if it has none. In the following example, the keymap for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 @samp{*scratch*} buffer (using Lisp Interaction mode) has a number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 of entries, including one prefix key, @kbd{C-x}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 (current-local-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 @result{} #<keymap lisp-interaction-mode-map 5 entries 0x558>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (describe-bindings-internal (current-local-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 @result{} ; @r{Inserted into the buffer:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 backspace backward-delete-char-untabify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 linefeed eval-print-last-sexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 delete delete-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 C-j eval-print-last-sexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 C-x << Prefix Command >>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 M-tab lisp-complete-symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 M-; lisp-indent-for-comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 M-C-i lisp-complete-symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 M-C-q indent-sexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 M-C-x eval-defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 Alt-backspace backward-kill-sexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 Alt-delete kill-sexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 C-x x edebug-defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 @defun current-minor-mode-maps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 This function returns a list of the keymaps of currently enabled minor modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 @defun use-global-map keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 This function makes @var{keymap} the new current global keymap. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 It is very unusual to change the global keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 @defun use-local-map keymap &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 This function makes @var{keymap} the new local keymap of @var{buffer}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 @var{buffer} defaults to the current buffer. If @var{keymap} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 @code{nil}, then the buffer has no local keymap. @code{use-local-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 returns @code{nil}. Most major mode commands use this function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 @defvar minor-mode-map-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 This variable is an alist describing keymaps that may or may not be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 active according to the values of certain variables. Its elements look
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (@var{variable} . @var{keymap})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 The keymap @var{keymap} is active whenever @var{variable} has a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 non-@code{nil} value. Typically @var{variable} is the variable that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 enables or disables a minor mode. @xref{Keymaps and Minor Modes}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 Note that elements of @code{minor-mode-map-alist} do not have the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 structure as elements of @code{minor-mode-alist}. The map must be the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 @sc{cdr} of the element; a list with the map as the second element will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 not do.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 What's more, the keymap itself must appear in the @sc{cdr}. It does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 work to store a variable in the @sc{cdr} and make the map the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 that variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 When more than one minor mode keymap is active, their order of priority
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 is the order of @code{minor-mode-map-alist}. But you should design
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 minor modes so that they don't interfere with each other. If you do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 this properly, the order will not matter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 See also @code{minor-mode-key-binding}, above. See @ref{Keymaps and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 Minor Modes}, for more information about minor modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 @defvar modeline-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 This variable holds the keymap consulted for mouse-clicks on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 modeline of a window. This variable may be buffer-local; its value will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 be looked up in the buffer of the window whose modeline was clicked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 upon.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 @defvar toolbar-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 This variable holds the keymap consulted for mouse-clicks over a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 toolbar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 @defvar mouse-grabbed-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 If non-@code{nil}, a buffer which should be consulted first for all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 mouse activity. When a mouse-click is processed, it will first be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 looked up in the local-map of this buffer, and then through the normal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 mechanism if there is no binding for that click. This buffer's value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 @code{mode-motion-hook} will be consulted instead of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 @code{mode-motion-hook} of the buffer of the window under the mouse.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 You should @emph{bind} this, not set it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 @defvar overriding-local-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 If non-@code{nil}, this variable holds a keymap to use instead of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 buffer's local keymap and instead of all the minor mode keymaps. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 keymap, if any, overrides all other maps that would have been active,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 except for the current global map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 @defvar overriding-terminal-local-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 If non-@code{nil}, this variable holds a keymap to use instead of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 buffer's local keymap and instead of all the minor mode keymaps, but for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 the selected console only. (In other words, this variable is always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 console-local; putting a keymap here only applies to keystrokes coming
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 from the selected console. @xref{Consoles and Devices}.) This keymap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 if any, overrides all other maps that would have been active, except for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 the current global map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 @node Key Lookup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 @section Key Lookup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 @cindex key lookup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 @cindex keymap entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 @dfn{Key lookup} is the process of finding the binding of a key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 sequence from a given keymap. Actual execution of the binding is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 part of key lookup.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 Key lookup uses just the event type of each event in the key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 sequence; the rest of the event is ignored. In fact, a key sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 used for key lookup may designate mouse events with just their types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 (symbols) instead of with entire mouse events (lists). @xref{Events}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 Such a pseudo-key-sequence is insufficient for @code{command-execute},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 but it is sufficient for looking up or rebinding a key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 When the key sequence consists of multiple events, key lookup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 processes the events sequentially: the binding of the first event is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 found, and must be a keymap; then the second event's binding is found in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 that keymap, and so on until all the events in the key sequence are used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 up. (The binding thus found for the last event may or may not be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 keymap.) Thus, the process of key lookup is defined in terms of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 simpler process for looking up a single event in a keymap. How that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 done depends on the type of object associated with the event in that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 Let's use the term @dfn{keymap entry} to describe the value found by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 looking up an event type in a keymap. (This doesn't include the item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 string and other extra elements in menu key bindings because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 @code{lookup-key} and other key lookup functions don't include them in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 the returned value.) While any Lisp object may be stored in a keymap as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 a keymap entry, not all make sense for key lookup. Here is a list of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 the meaningful kinds of keymap entries:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 @table @asis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 @item @code{nil}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 @cindex @code{nil} in keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 @code{nil} means that the events used so far in the lookup form an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 undefined key. When a keymap fails to mention an event type at all, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 has no default binding, that is equivalent to a binding of @code{nil}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 for that event type.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 @item @var{keymap}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 @cindex keymap in keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 The events used so far in the lookup form a prefix key. The next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 event of the key sequence is looked up in @var{keymap}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 @item @var{command}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 @cindex command in keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 The events used so far in the lookup form a complete key,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 and @var{command} is its binding. @xref{What Is a Function}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 @item @var{array}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 @cindex string in keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 The array (either a string or a vector) is a keyboard macro. The events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 used so far in the lookup form a complete key, and the array is its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 binding. See @ref{Keyboard Macros}, for more information. (Note that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 you cannot use a shortened form of a key sequence here, such as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 @code{(control y)}; you must use the full form @code{[(control y)]}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 @xref{Key Sequences}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 @item @var{list}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 @cindex list in keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 The meaning of a list depends on the types of the elements of the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 @cindex @code{lambda} in keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 If the @sc{car} of @var{list} is @code{lambda}, then the list is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 lambda expression. This is presumed to be a command, and is treated as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 such (see above).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 If the @sc{car} of @var{list} is a keymap and the @sc{cdr} is an event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 type, then this is an @dfn{indirect entry}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 (@var{othermap} . @var{othertype})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 When key lookup encounters an indirect entry, it looks up instead the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 binding of @var{othertype} in @var{othermap} and uses that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 This feature permits you to define one key as an alias for another key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 For example, an entry whose @sc{car} is the keymap called @code{esc-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 and whose @sc{cdr} is 32 (the code for @key{SPC}) means, ``Use the global
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 binding of @kbd{Meta-@key{SPC}}, whatever that may be.''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 @item @var{symbol}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 @cindex symbol in keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 The function definition of @var{symbol} is used in place of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 @var{symbol}. If that too is a symbol, then this process is repeated,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 any number of times. Ultimately this should lead to an object that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 a keymap, a command or a keyboard macro. A list is allowed if it is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 keymap or a command, but indirect entries are not understood when found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 via symbols.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 Note that keymaps and keyboard macros (strings and vectors) are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 valid functions, so a symbol with a keymap, string, or vector as its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 function definition is invalid as a function. It is, however, valid as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 a key binding. If the definition is a keyboard macro, then the symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 is also valid as an argument to @code{command-execute}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 (@pxref{Interactive Call}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 @cindex @code{undefined} in keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 The symbol @code{undefined} is worth special mention: it means to treat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 the key as undefined. Strictly speaking, the key is defined, and its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 binding is the command @code{undefined}; but that command does the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 thing that is done automatically for an undefined key: it rings the bell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 (by calling @code{ding}) but does not signal an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 @cindex preventing prefix key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 @code{undefined} is used in local keymaps to override a global key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 binding and make the key ``undefined'' locally. A local binding of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 @code{nil} would fail to do this because it would not override the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 global binding.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 @item @var{anything else}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 If any other type of object is found, the events used so far in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 lookup form a complete key, and the object is its binding, but the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 binding is not executable as a command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 In short, a keymap entry may be a keymap, a command, a keyboard macro,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 a symbol that leads to one of them, or an indirection or @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 @node Functions for Key Lookup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 @section Functions for Key Lookup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 Here are the functions and variables pertaining to key lookup.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 @defun lookup-key keymap key &optional accept-defaults
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 This function returns the definition of @var{key} in @var{keymap}. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 the string or vector @var{key} is not a valid key sequence according to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 the prefix keys specified in @var{keymap} (which means it is ``too
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 long'' and has extra events at the end), then the value is a number, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 number of events at the front of @var{key} that compose a complete key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 If @var{accept-defaults} is non-@code{nil}, then @code{lookup-key}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 considers default bindings as well as bindings for the specific events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 in @var{key}. Otherwise, @code{lookup-key} reports only bindings for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 the specific sequence @var{key}, ignoring default bindings except when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 you explicitly ask about them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 All the other functions described in this chapter that look up keys use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 @code{lookup-key}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 (lookup-key (current-global-map) "\C-x\C-f")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 @result{} find-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 (lookup-key (current-global-map) "\C-x\C-f12345")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 @result{} 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 If @var{key} begins with the character whose value is contained in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 @code{meta-prefix-char}, that character is implicitly removed and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 @key{META} modifier added to the key. Thus, the first example below is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 handled by conversion into the second example.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 (lookup-key (current-global-map) "\ef")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 @result{} forward-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 (lookup-key (current-global-map) "\M-f")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 @result{} forward-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 Unlike @code{read-key-sequence}, this function does not modify the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 specified events in ways that discard information (@pxref{Key Sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 Input}). In particular, it does not convert letters to lower case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 @deffn Command undefined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 Used in keymaps to undefine keys. If a key sequence is defined to this,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 invoking this key sequence causes a ``key undefined'' error, just as if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 the key sequence had no binding.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 @defun key-binding key &optional accept-defaults
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 This function returns the binding for @var{key} in the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 keymaps, trying all the active keymaps. The result is @code{nil} if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 @var{key} is undefined in the keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 The argument @var{accept-defaults} controls checking for default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 bindings, as in @code{lookup-key} (above).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 (key-binding "\C-x\C-f")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 @result{} find-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 (key-binding '(control home))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 @result{} beginning-of-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 (key-binding [escape escape escape])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 @result{} keyboard-escape-quit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 @defun local-key-binding key &optional accept-defaults
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 This function returns the binding for @var{key} in the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 local keymap, or @code{nil} if it is undefined there.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 The argument @var{accept-defaults} controls checking for default bindings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 as in @code{lookup-key} (above).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 @defun global-key-binding key &optional accept-defaults
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 This function returns the binding for command @var{key} in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 current global keymap, or @code{nil} if it is undefined there.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 The argument @var{accept-defaults} controls checking for default bindings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 as in @code{lookup-key} (above).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 @defun minor-mode-key-binding key &optional accept-defaults
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 This function returns a list of all the active minor mode bindings of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 @var{key}. More precisely, it returns an alist of pairs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 @code{(@var{modename} . @var{binding})}, where @var{modename} is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 variable that enables the minor mode, and @var{binding} is @var{key}'s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 binding in that mode. If @var{key} has no minor-mode bindings, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 value is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 If the first binding is not a prefix command, all subsequent bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 from other minor modes are omitted, since they would be completely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 shadowed. Similarly, the list omits non-prefix bindings that follow
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 prefix bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 The argument @var{accept-defaults} controls checking for default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 bindings, as in @code{lookup-key} (above).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 @defvar meta-prefix-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 @cindex @key{ESC}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 This variable is the meta-prefix character code. It is used when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 translating a two-character sequence to a meta character so it can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 looked up in a keymap. For useful results, the value should be a prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 event (@pxref{Prefix Keys}). The default value is @code{?\^[} (integer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 27), which is the @sc{ASCII} character usually produced by the @key{ESC}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 As long as the value of @code{meta-prefix-char} remains @code{?\^[},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 key lookup translates @kbd{@key{ESC} b} into @kbd{M-b}, which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 normally defined as the @code{backward-word} command. However, if you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 set @code{meta-prefix-char} to @code{?\^X} (i.e. the keystroke
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 @kbd{C-x}) or its equivalent @sc{ASCII} code @code{24}, then XEmacs will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 translate @kbd{C-x b} (whose standard binding is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 @code{switch-to-buffer} command) into @kbd{M-b}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 meta-prefix-char ; @r{The default value.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 @result{} ?\^[ ; @r{Under XEmacs 20.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 @result{} 27 ; @r{Under XEmacs 19.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 (key-binding "\eb")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 @result{} backward-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 ?\C-x ; @r{The print representation}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 ; @r{of a character.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 @result{} ?\^X ; @r{Under XEmacs 20.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 @result{} 24 ; @r{Under XEmacs 19.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 (setq meta-prefix-char 24)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 @result{} 24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 (key-binding "\C-xb")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 @result{} backward-word ; @r{Now, typing @kbd{C-x b} is}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 ; @r{like typing @kbd{M-b}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 (setq meta-prefix-char ?\e) ; @r{Avoid confusion!}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 ; @r{Restore the default value!}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 @result{} ?\^[ ; @r{Under XEmacs 20.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 @result{} 27 ; @r{Under XEmacs 19.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 @node Changing Key Bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 @section Changing Key Bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 @cindex changing key bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 @cindex rebinding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 The way to rebind a key is to change its entry in a keymap. If you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 change a binding in the global keymap, the change is effective in all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 buffers (though it has no direct effect in buffers that shadow the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 global binding with a local one). If you change the current buffer's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 local map, that usually affects all buffers using the same major mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 The @code{global-set-key} and @code{local-set-key} functions are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 convenient interfaces for these operations (@pxref{Key Binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 Commands}). You can also use @code{define-key}, a more general
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 function; then you must specify explicitly the map to change.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 The way to specify the key sequence that you want to rebind is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 described above (@pxref{Key Sequences}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 For the functions below, an error is signaled if @var{keymap} is not a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 keymap or if @var{key} is not a string or vector representing a key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 sequence. You can use event types (symbols) as shorthand for events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 that are lists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 @defun define-key keymap key binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 This function sets the binding for @var{key} in @var{keymap}. (If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 @var{key} is more than one event long, the change is actually made
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 in another keymap reached from @var{keymap}.) The argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 @var{binding} can be any Lisp object, but only certain types are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 meaningful. (For a list of meaningful types, see @ref{Key Lookup}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 The value returned by @code{define-key} is @var{binding}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 @cindex invalid prefix key error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 @cindex key sequence error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 Every prefix of @var{key} must be a prefix key (i.e., bound to a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 keymap) or undefined; otherwise an error is signaled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 If some prefix of @var{key} is undefined, then @code{define-key} defines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 it as a prefix key so that the rest of @var{key} may be defined as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 Here is an example that creates a sparse keymap and makes a number of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 bindings in it:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 (setq map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 @result{} #<keymap 0 entries 0xbee>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 (define-key map "\C-f" 'forward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 @result{} forward-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 @result{} #<keymap 1 entry 0xbee>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 (describe-bindings-internal map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 @result{} ; @r{(Inserted in buffer)}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 C-f forward-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 ;; @r{Build sparse submap for @kbd{C-x} and bind @kbd{f} in that.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 (define-key map "\C-xf" 'forward-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 @result{} forward-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 @result{} #<keymap 2 entries 0xbee>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 (describe-bindings-internal map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 @result{} ; @r{(Inserted in buffer)}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 C-f forward-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 C-x << Prefix Command >>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 C-x f forward-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 ;; @r{Bind @kbd{C-p} to the @code{ctl-x-map}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 (define-key map "\C-p" ctl-x-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 ;; @code{ctl-x-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 @result{} #<keymap Control-X-prefix 77 entries 0x3bf>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 ;; @r{Bind @kbd{C-f} to @code{foo} in the @code{ctl-x-map}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 (define-key map "\C-p\C-f" 'foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 @result{} foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 @result{} #<keymap 3 entries 0xbee>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 (describe-bindings-internal map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 @result{} ; @r{(Inserted in buffer)}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 C-f forward-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 C-p << Prefix command Control-X-prefix >>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 C-x << Prefix Command >>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 C-p tab indent-rigidly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 C-p $ set-selective-display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 C-p ' expand-abbrev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 C-p ( start-kbd-macro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 C-p ) end-kbd-macro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 @dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 C-p C-x exchange-point-and-mark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 C-p C-z suspend-or-iconify-emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 C-p M-escape repeat-complex-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 C-p M-C-[ repeat-complex-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 C-x f forward-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 C-p 4 . find-tag-other-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 @dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 C-p 4 C-o display-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 C-p 5 0 delete-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 @dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 C-p 5 C-f find-file-other-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 @dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 C-p a i g inverse-add-global-abbrev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 C-p a i l inverse-add-mode-abbrev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 Note that storing a new binding for @kbd{C-p C-f} actually works by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 changing an entry in @code{ctl-x-map}, and this has the effect of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 changing the bindings of both @kbd{C-p C-f} and @kbd{C-x C-f} in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 default global map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 @defun substitute-key-definition olddef newdef keymap &optional oldmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 @cindex replace bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 This function replaces @var{olddef} with @var{newdef} for any keys in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 @var{keymap} that were bound to @var{olddef}. In other words,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 @var{olddef} is replaced with @var{newdef} wherever it appears. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 function returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 For example, this redefines @kbd{C-x C-f}, if you do it in an XEmacs with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 standard bindings:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 (substitute-key-definition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 'find-file 'find-file-read-only (current-global-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 If @var{oldmap} is non-@code{nil}, then its bindings determine which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 keys to rebind. The rebindings still happen in @var{newmap}, not in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 @var{oldmap}. Thus, you can change one map under the control of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 bindings in another. For example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 (substitute-key-definition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 'delete-backward-char 'my-funny-delete
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 my-map global-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 puts the special deletion command in @code{my-map} for whichever keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 are globally bound to the standard deletion command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 @ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 @c Emacs 18 only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 Prefix keymaps that appear within @var{keymap} are not checked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 recursively for keys bound to @var{olddef}; they are not changed at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 Perhaps it would be better to check nested keymaps recursively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 @ignore @c #### fix this up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 Here is an example showing a keymap before and after substitution:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 (setq map '(keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 (?1 . olddef-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 (?2 . olddef-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 (?3 . olddef-1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 @result{} (keymap (49 . olddef-1) (50 . olddef-2) (51 . olddef-1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 (substitute-key-definition 'olddef-1 'newdef map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 @result{} (keymap (49 . newdef) (50 . olddef-2) (51 . newdef))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 @defun suppress-keymap keymap &optional nodigits
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 @cindex @code{self-insert-command} override
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 This function changes the contents of the full keymap @var{keymap} by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 making all the printing characters undefined. More precisely, it binds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 them to the command @code{undefined}. This makes ordinary insertion of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 text impossible. @code{suppress-keymap} returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 If @var{nodigits} is @code{nil}, then @code{suppress-keymap} defines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 digits to run @code{digit-argument}, and @kbd{-} to run
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 @code{negative-argument}. Otherwise it makes them undefined like the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 rest of the printing characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 @cindex yank suppression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 @cindex @code{quoted-insert} suppression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 The @code{suppress-keymap} function does not make it impossible to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 modify a buffer, as it does not suppress commands such as @code{yank}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 and @code{quoted-insert}. To prevent any modification of a buffer, make
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 it read-only (@pxref{Read Only Buffers}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 Since this function modifies @var{keymap}, you would normally use it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 on a newly created keymap. Operating on an existing keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 that is used for some other purpose is likely to cause trouble; for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 example, suppressing @code{global-map} would make it impossible to use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 most of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 Most often, @code{suppress-keymap} is used to initialize local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 keymaps of modes such as Rmail and Dired where insertion of text is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 desirable and the buffer is read-only. Here is an example taken from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 the file @file{emacs/lisp/dired.el}, showing how the local keymap for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 Dired mode is set up:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 @dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 (setq dired-mode-map (make-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 (suppress-keymap dired-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 (define-key dired-mode-map "r" 'dired-rename-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 (define-key dired-mode-map "\C-d" 'dired-flag-file-deleted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 (define-key dired-mode-map "d" 'dired-flag-file-deleted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 (define-key dired-mode-map "v" 'dired-view-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 (define-key dired-mode-map "e" 'dired-find-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 (define-key dired-mode-map "f" 'dired-find-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 @dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 @node Key Binding Commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 @section Commands for Binding Keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 This section describes some convenient interactive interfaces for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 changing key bindings. They work by calling @code{define-key}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 People often use @code{global-set-key} in their @file{.emacs} file for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 simple customization. For example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 (global-set-key "\C-x\C-\\" 'next-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 (global-set-key [(control ?x) (control ?\\)] 'next-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 (global-set-key [?\C-x ?\C-\\] 'next-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 redefines @kbd{C-x C-\} to move down a line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 (global-set-key [(meta button1)] 'mouse-set-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 redefines the first (leftmost) mouse button, typed with the Meta key, to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 set point where you click.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 @deffn Command global-set-key key definition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 This function sets the binding of @var{key} in the current global map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 to @var{definition}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 (global-set-key @var{key} @var{definition})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 @equiv{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 (define-key (current-global-map) @var{key} @var{definition})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 @deffn Command global-unset-key key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 @cindex unbinding keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 This function removes the binding of @var{key} from the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 global map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 One use of this function is in preparation for defining a longer key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 that uses @var{key} as a prefix---which would not be allowed if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 @var{key} has a non-prefix binding. For example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 (global-unset-key "\C-l")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 (global-set-key "\C-l\C-l" 'redraw-display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 This function is implemented simply using @code{define-key}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 (global-unset-key @var{key})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 @equiv{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 (define-key (current-global-map) @var{key} nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 @deffn Command local-set-key key definition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 This function sets the binding of @var{key} in the current local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 keymap to @var{definition}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 (local-set-key @var{key} @var{definition})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 @equiv{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 (define-key (current-local-map) @var{key} @var{definition})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 @deffn Command local-unset-key key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 This function removes the binding of @var{key} from the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 local map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 (local-unset-key @var{key})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 @equiv{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 (define-key (current-local-map) @var{key} nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 @node Scanning Keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 @section Scanning Keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 This section describes functions used to scan all the current keymaps,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 or all keys within a keymap, for the sake of printing help information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 @defun accessible-keymaps keymap &optional prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 This function returns a list of all the keymaps that can be accessed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 (via prefix keys) from @var{keymap}. The value is an association list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 with elements of the form @code{(@var{key} .@: @var{map})}, where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 @var{key} is a prefix key whose definition in @var{keymap} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 @var{map}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 The elements of the alist are ordered so that the @var{key} increases
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 in length. The first element is always @code{([] .@: @var{keymap})},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 because the specified keymap is accessible from itself with a prefix of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 no events.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 If @var{prefix} is given, it should be a prefix key sequence; then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 @code{accessible-keymaps} includes only the submaps whose prefixes start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 with @var{prefix}. These elements look just as they do in the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 @code{(accessible-keymaps)}; the only difference is that some elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 are omitted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 In the example below, the returned alist indicates that the key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 @kbd{C-x}, which is displayed as @samp{[(control x)]}, is a prefix key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 whose definition is the keymap @code{#<keymap ((control x) #<keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 emacs-lisp-mode-map 8 entries 0x546>) 1 entry 0x8a2>}. (The strange
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 notation for the keymap's name indicates that this is an internal submap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 of @code{emacs-lisp-mode-map}. This is because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 @code{lisp-interaction-mode-map} has set up @code{emacs-lisp-mode-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 as its parent, and @code{lisp-interaction-mode-map} defines no key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 sequences beginning with @kbd{C-x}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 (current-local-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 @result{} #<keymap lisp-interaction-mode-map 5 entries 0x558>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 (accessible-keymaps (current-local-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 @result{}(([] . #<keymap lisp-interaction-mode-map 5 entries 0x558>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 ([(control x)] .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 #<keymap ((control x) #<keymap emacs-lisp-mode-map 8 entries 0x546>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 1 entry 0x8a2>))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 The following example shows the results of calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 @code{accessible-keymaps} on a large, complex keymap. Notice how
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 some keymaps were given explicit names using @code{set-keymap-name};
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 those submaps without explicit names are given descriptive names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 indicating their relationship to their enclosing keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 (accessible-keymaps (current-global-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 @result{} (([] . #<keymap global-map 639 entries 0x221>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 ([(control c)] . #<keymap mode-specific-command-prefix 1 entry 0x3cb>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 ([(control h)] . #<keymap help-map 33 entries 0x4ec>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 ([(control x)] . #<keymap Control-X-prefix 77 entries 0x3bf>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 ([(meta escape)] .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 #<keymap ((meta escape) #<keymap global-map 639 entries 0x221>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 3 entries 0x3e0>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 ([(meta control \[)] .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 #<keymap ((meta escape) #<keymap global-map 639 entries 0x221>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 3 entries 0x3e0>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 ([f1] . #<keymap help-map 33 entries 0x4ec>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 ([(control x) \4] . #<keymap ctl-x-4-prefix 9 entries 0x3c5>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 ([(control x) \5] . #<keymap ctl-x-5-prefix 8 entries 0x3c8>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 ([(control x) \6] . #<keymap 13 entries 0x4d2>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 ([(control x) a] .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 #<keymap (a #<keymap Control-X-prefix 77 entries 0x3bf>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 8 entries 0x3ef>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 ([(control x) n] . #<keymap narrowing-prefix 3 entries 0x3dd>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 ([(control x) r] . #<keymap rectangle-prefix 18 entries 0x3e9>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 ([(control x) v] . #<keymap vc-prefix-map 13 entries 0x60e>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 ([(control x) a i] .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 #<keymap (i #<keymap (a #<keymap Control-X-prefix 77 entries 0x3bf>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 8 entries 0x3ef>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 2 entries 0x3f5>))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 @defun map-keymap function keymap &optional sort-first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 This function applies @var{function} to each element of @code{KEYMAP}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 @var{function} will be called with two arguments: a key-description
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 list, and the binding. The order in which the elements of the keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 are passed to the function is unspecified. If the function inserts new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 elements into the keymap, it may or may not be called with them later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 No element of the keymap will ever be passed to the function more than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 once.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 The function will not be called on elements of this keymap's parents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 (@pxref{Inheritance and Keymaps}) or upon keymaps which are contained
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 within this keymap (multi-character definitions). It will be called on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 @key{META} characters since they are not really two-character sequences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 If the optional third argument @var{sort-first} is non-@code{nil}, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 the elements of the keymap will be passed to the mapper function in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 canonical order. Otherwise, they will be passed in hash (that is,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 random) order, which is faster.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 @defun keymap-fullness keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 This function returns the number of bindings in the keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 @defun where-is-internal definition &optional keymaps firstonly noindirect event-or-keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 This function returns a list of key sequences (of any length) that are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 bound to @var{definition} in a set of keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 The argument @var{definition} can be any object; it is compared with all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 keymap entries using @code{eq}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 KEYMAPS can be either a keymap (meaning search in that keymap and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 current global keymap) or a list of keymaps (meaning search in exactly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 those keymaps and no others). If KEYMAPS is nil, search in the currently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 applicable maps for EVENT-OR-KEYS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 If @var{keymap} is a keymap, then the maps searched are @var{keymap} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 the global keymap. If @var{keymap} is a list of keymaps, then the maps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 searched are exactly those keymaps, and no others. If @var{keymap} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 @code{nil}, then the maps used are the current active keymaps for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 @var{event-or-keys} (this is equivalent to specifying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 @code{(current-keymaps @var{event-or-keys})} as the argument to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 @var{keymaps}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 If @var{firstonly} is non-@code{nil}, then the value is a single
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 vector representing the first key sequence found, rather than a list of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 all possible key sequences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 @ignore @c #### Should fix where-is to be more like FSF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 If @var{firstonly} is @code{non-ascii}, then the value is a single
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 string representing the first key sequence found, rather than a list of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 all possible key sequences. If @var{firstonly} is @code{t}, then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 value is the first key sequence, except that key sequences consisting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 entirely of @sc{ASCII} characters (or meta variants of @sc{ASCII}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 characters) are preferred to all other key sequences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 If @var{noindirect} is non-@code{nil}, @code{where-is-internal} doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 follow indirect keymap bindings. This makes it possible to search for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 an indirect definition itself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 This function is used by @code{where-is} (@pxref{Help, , Help, emacs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 The XEmacs Reference Manual}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 (where-is-internal 'describe-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 @result{} ([(control h) d] [(control h) f] [f1 d] [f1 f])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 @defun describe-bindings-internal map &optional all shadow prefix mouse-only-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 This function inserts (into the current buffer) a list of all defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 keys and their definitions in @var{map}. Optional second argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 @var{all} says whether to include even ``uninteresting'' definitions,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 i.e. symbols with a non-@code{nil} @code{suppress-keymap} property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 Third argument @var{shadow} is a list of keymaps whose bindings shadow
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 those of map; if a binding is present in any shadowing map, it is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 printed. Fourth argument @var{prefix}, if non-@code{nil}, should be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 key sequence; only bindings which start with that key sequence will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 printed. Fifth argument @var{mouse-only-p} says to only print bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 for mouse clicks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 @code{describe-bindings-internal} is used to implement the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 help command @code{describe-bindings}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 @deffn Command describe-bindings prefix mouse-only-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 This function creates a listing of all defined keys and their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 definitions. It writes the listing in a buffer named @samp{*Help*} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 displays it in a window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 If @var{prefix} is non-@code{nil}, it should be a prefix key; then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 listing includes only keys that start with @var{prefix}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 When several characters with consecutive @sc{ASCII} codes have the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 same definition, they are shown together, as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 @samp{@var{firstchar}..@var{lastchar}}. In this instance, you need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 know the @sc{ASCII} codes to understand which characters this means.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 For example, in the default global map, the characters @samp{@key{SPC}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 ..@: ~} are described by a single line. @key{SPC} is @sc{ASCII} 32,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 @kbd{~} is @sc{ASCII} 126, and the characters between them include all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 the normal printing characters, (e.g., letters, digits, punctuation,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 etc.@:); all these characters are bound to @code{self-insert-command}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 If the second argument (prefix arg, interactively) is non-@code{nil}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 then only the mouse bindings are displayed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 @node Other Keymap Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 @section Other Keymap Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 @defun set-keymap-prompt keymap new-prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 This function sets the ``prompt'' of @var{keymap} to string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 @var{new-prompt}, or @code{nil} if no prompt is desired. The prompt is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 shown in the echo-area when reading a key-sequence to be looked-up in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 this keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 @defun keymap-prompt keymap &optional use-inherited
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 This function returns the ``prompt'' of the given keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 If @var{use-inherited} is non-@code{nil}, any parent keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 will also be searched for a prompt.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 @end defun