annotate man/lispref/keymaps.texi @ 5908:6174848f3e6c

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