* doc/emacs/mule.texi (Input Methods):
* doc/lispintro/emacs-lisp-intro.texi (Miscellaneous):
* doc/lispref/text.texi (Clickable Text):
* doc/misc/calc.texi (Defining Functions, Defining Simple Commands)
(Customizing Calc):
* doc/misc/efaq.texi (Matching parentheses, Modifying pull-down menus)
(Deleting menus and menu options, Binding keys to commands)
(Invalid prefix characters)
(Terminal setup code works after Emacs has begun)
(Backspace invokes help, Swapping keys, No Escape key)
(Binding combinations of modifiers and function keys)
(Replying to the sender of a message):
* doc/misc/eudc.texi (Installation, Emacs-only Configuration)
(External Configuration):
* doc/misc/gnus.texi (Group Parameters, Misc Group Stuff)
(Summary Buffer, Generic Marking Commands, RSS)
(nnmairix tips and tricks, Oort Gnus):
* doc/misc/ido.texi (Customization):
* doc/misc/mairix-el.texi (Using):
* doc/misc/mh-e.texi (HTML, Miscellaneous Commands and Options)
(Folders, Composing):
* doc/misc/octave-mode.texi (Running Octave from Within Emacs):
* doc/misc/reftex.texi (Citations Outside LaTeX):
* doc/misc/remember.texi (Quick Start):
* doc/misc/sem-user.texi (Smart Jump):
* doc/misc/viper.texi (Key Bindings, Vi Macros):
* doc/misc/widget.texi (Defining New Widgets):
* doc/misc/woman.texi (Word at point): Recommend 'keymap-set',
'keymap-global-set', 'keymap-global-unset', 'keymap-local-set', and
'key-translate', instead of their legacy equivalents. (Bug#55647)
(cherry picked from commit
96a704346a282fc2783e54de3d9c30cd8f9ce955)
function that you add to the hook variable @code{quail-activate-hook}.
@xref{Hooks}. For example, you can redefine some of the input
method's keys by defining key bindings in the keymap returned by the
-function @code{quail-translation-keymap}, using @code{define-key}.
+function @code{quail-translation-keymap}, using @code{keymap-set}.
@xref{Init Rebinding}.
Input methods are inhibited when the text in the buffer is read-only
@smallexample
@group
;; Translate 'C-h' to <DEL>.
-; (keyboard-translate ?\C-h ?\C-?)
+; (key-translate "C-h" "C-?")
;; Translate <DEL> to 'C-h'.
-(keyboard-translate ?\C-? ?\C-h)
+(key-translate "C-?" "C-h")
@end group
@end smallexample
@example
(let ((map (make-sparse-keymap)))
- (define-key map [mouse-2] 'operate-this-button)
+ (keymap-set map "<mouse-2>" 'operate-this-button)
(put-text-property link-start link-end 'keymap map))
@end example
is not yet defined because Calc has not yet been loaded.
Examples of things that ought to be enclosed in a @code{calc-define}
-property are @code{defmath} calls, @code{define-key} calls that modify
+property are @code{defmath} calls, @code{keymap-set} calls that modify
the Calc key map, and any calls that redefine things defined inside Calc.
Ordinary @code{defun}s need not be enclosed with @code{calc-define}.
@vindex calc-Y-help-msgs
Calc reserves a special prefix key, shift-@kbd{Y}, for user-written
extensions to Calc. There are no built-in commands that work with
-this prefix key; you must call @code{define-key} from Lisp (probably
+this prefix key; you must call @code{keymap-set} from Lisp (probably
from inside a @code{calc-define} property) to add to it. Initially only
@kbd{Y ?} is defined; it takes help messages from a list of strings
(initially @code{nil}) in the variable @code{calc-Y-help-msgs}. All
(put 'calc-define 'inc-prec '(progn
-(define-key calc-mode-map (format "Y%sI" inc-prec-base-key)
+(keymap-set calc-mode-map (format "Y %s I" inc-prec-base-key)
'calc-increase-precision)
-(define-key calc-mode-map (format "Y%sD" inc-prec-base-key)
+(keymap-set calc-mode-map (format "Y %s D" inc-prec-base-key)
'calc-decrease-precision)
(setq calc-Y-help-msgs
to use a different prefix, you can put
@example
-(global-set-key "NEWPREFIX" 'calc-dispatch)
+(keymap-global-set "NEWPREFIX" 'calc-dispatch)
@end example
@noindent
@lisp
;; By an unknown contributor
-(global-set-key "%" 'match-paren)
+(keymap-global-set "%" 'match-paren)
(defun match-paren (arg)
"Go to the matching paren if on a paren; otherwise insert %."
item to the @samp{Edit} menu thus requires the following Lisp code:
@lisp
-(define-key global-map
- [menu-bar edit forward]
+(keymap-set global-map
+ "<menu-bar> <edit> <forward>"
'("Forward word" . forward-word))
@end lisp
define an entirely new keymap:
@lisp
-(define-key global-map [menu-bar words]
+(keymap-set global-map "<menu-bar> <words>"
(cons "Words" (make-sparse-keymap "Words")))
@end lisp
following code:
@lisp
-(define-key global-map
- [menu-bar words forward]
+(keymap-set global-map
+ "<menu-bar> <words> <forward>"
'("Forward word" . forward-word))
@end lisp
order), the menu option @samp{baz} would appear at the top, and
@samp{foo} would be at the bottom.
-One way to avoid this problem is to use the function @code{define-key-after},
-which works the same as @code{define-key}, but lets you modify where items
+One way to avoid this problem is to use the function @code{keymap-set-after},
+which works the same as @code{keymap-set}, but lets you modify where items
appear. The following Lisp code would insert the @samp{Forward Word}
item in the @samp{Edit} menu immediately following the @samp{Undo} item:
@lisp
-(define-key-after
- (lookup-key global-map [menu-bar edit])
- [forward]
+(keymap-set-after
+ (keymap-lookup global-map "<menu-bar> <edit>")
+ "<forward>"
'("Forward word" . forward-word)
'undo)
@end lisp
-Note how the second and third arguments to @code{define-key-after} are
-different from those of @code{define-key}, and that we have added a new
+Note how the second and third arguments to @code{keymap-set-after} are
+different from those of @code{keymap-set}, and that we have added a new
(final) argument, the function after which our new key should be
defined.
To move a menu option from one position to another, simply evaluate
-@code{define-key-after} with the appropriate final argument.
+@code{keymap-set-after} with the appropriate final argument.
More detailed information---and more examples of how to create and
modify menu options---are in the @cite{Emacs Lisp Reference Manual}, under
menus}), use:
@lisp
-(define-key global-map [menu-bar words] nil)
+(keymap-set global-map "<menu-bar> <words>" nil)
@end lisp
Similarly, removing a menu option requires redefining a keymap entry to
menus}), use:
@lisp
-(define-key global-map [menu-bar edit forward] nil)
+(keymap-set global-map "<menu-bar> <edit> <forward>" nil)
@end lisp
@node Turning on syntax highlighting
Keys can be bound to commands either interactively or in your init
file (@pxref{Setting up a customization file}). To interactively bind
-keys for all modes, type @kbd{M-x global-set-key @key{RET} @var{key}
+keys for all modes, type @kbd{M-x keymap-global-set @key{RET} @var{key}
@var{cmd} @key{RET}}.
To bind a key just in the current major mode, type @kbd{M-x
-local-set-key @key{RET} @var{key} @var{cmd} @key{RET}}.
+keymap-local-set @key{RET} @var{key} @var{cmd} @key{RET}}.
@xref{Key Bindings,,, emacs, The GNU Emacs Manual}.
command are required. For example,
@lisp
-(global-set-key [f1] 'help-for-help)
+(keymap-global-set "<f1>" 'help-for-help)
@end lisp
@noindent
@lisp
(add-hook 'tex-mode-hook
(lambda ()
- (local-set-key [f1] 'help-for-help)))
+ (keymap-local-set "<f1>" 'help-for-help)))
@end lisp
binding. For example, if @kbd{ESC @{} is previously bound:
@lisp
-(global-unset-key [?\e ?@{]) ;; or
-(local-unset-key [?\e ?@{])
+(keymap-global-unset "M-@{") ;; or
+(keymap-local-unset "M-@{")
@end lisp
@item
can be bound to a key and thus treated as a macro. For example:
@lisp
-(global-set-key [f10] [?\C-x?\e?\e?\C-a?\C-k?\C-g]) ;; or
-(global-set-key [f10] "\C-x\e\e\C-a\C-k\C-g")
+(keymap-global-set "<f10>" [?\C-x?\e?\e?\C-a?\C-k?\C-g]) ;; or
+(keymap-global-set "<f10>" "\C-x\e\e\C-a\C-k\C-g")
@end lisp
@end itemize
used instead of @samp{\C-f} within a Lisp expression). In the other
case, a @dfn{prefix key} in the keystroke sequence you were trying to bind
was already bound as a @dfn{complete key}. Historically, the @samp{ESC [}
-prefix was usually the problem, in which case you should evaluate either
-of these forms before attempting to bind the key sequence:
+prefix was usually the problem, in which case you should evaluate this
+form before attempting to bind the key sequence:
@lisp
-(global-unset-key [?\e ?[]) ;; or
-(global-unset-key "\e[")
+(keymap-global-unset "M-[")
@end lisp
@node Terminal setup code works after Emacs has begun
(lambda ()
(when (string-match "\\`vt220" (or (getenv "TERM") ""))
;; Make vt220's "Do" key behave like M-x:
- (global-set-key [do] 'execute-extended-command))))
+ (keymap-global-set "<do>" 'execute-extended-command))))
@end lisp
For information on what Emacs does every time it is started, see the
Emacs:
@lisp
-(keyboard-translate ?\C-h ?\C-?)
+(key-translate "C-h" "C-?")
@end lisp
@noindent
default deletes forward:
@lisp
-(keyboard-translate ?\C-? ?\C-d)
+(key-translate "C-?" "C-d")
@end lisp
-@xref{Swapping keys}, for further details about @code{keyboard-translate}.
+@xref{Swapping keys}, for further details about @code{key-translate}.
@item
Another approach is to switch key bindings and put help on @kbd{C-x h}
instead:
@lisp
-(global-set-key "\C-h" 'delete-backward-char)
+(keymap-global-set "C-h" 'delete-backward-char)
;; overrides mark-whole-buffer
-(global-set-key "\C-xh" 'help-command)
+(keymap-global-set "C-x h" 'help-command)
@end lisp
@noindent
those modes which bind @key{DEL} to @code{delete-backward-char}. Modes
which bind @key{DEL} to something else, such as @code{view-mode}, will
not work as you expect when you press the @key{Backspace} key. For this
-reason, we recommend the @code{keyboard-translate} method, shown
+reason, we recommend the @code{key-translate} method, shown
above.
Other popular key bindings for help are @kbd{M-?} and @kbd{C-x ?}.
@section How do I swap two keys?
@cindex Swapping keys
@cindex Keys, swapping
-@cindex @code{keyboard-translate}
+@cindex @code{key-translate}
You can swap two keys (or key sequences) by using the
-@code{keyboard-translate} function. For example, to turn @kbd{C-h}
+@code{key-translate} function. For example, to turn @kbd{C-h}
into @key{DEL} and @key{DEL} to @kbd{C-h}, use
@lisp
-(keyboard-translate ?\C-h ?\C-?) ; translate 'C-h' to DEL
-(keyboard-translate ?\C-? ?\C-h) ; translate DEL to 'C-h'.
+(key-translate "C-h" "C-?") ; translate 'C-h' to DEL
+(key-translate "C-?" "C-h") ; translate DEL to 'C-h'.
@end lisp
@noindent
However, in the specific case of @kbd{C-h} and @key{DEL}, you should
toggle @code{normal-erase-is-backspace-mode} instead of calling
-@code{keyboard-translate}.
+@code{key-translate}.
@xref{DEL Does Not Delete,,, emacs, The GNU Emacs Manual}.
Keyboard translations are not the same as key bindings in keymaps.
@lisp
;; F11 is the documented ESC replacement on DEC terminals.
-(define-key function-key-map [f11] [?\e])
+(keymap-set function-key-map "<f11>" [?\e])
@end lisp
@node Compose Character
documentation):
@lisp
-(global-set-key [?\C-x right] 'forward-page)
+(keymap-global-set "C-x <right>" 'forward-page)
@end lisp
@noindent
is how to make @kbd{H-M-RIGHT} move forward a word:
@lisp
-(global-set-key [H-M-right] 'forward-word)
+(keymap-global-set "H-M-<right>" 'forward-word)
@end lisp
@itemize @bullet
(add-hook 'rmail-mode-hook
(lambda ()
- (define-key rmail-mode-map "r" 'rmail-reply-t)
- (define-key rmail-mode-map "R" 'rmail-reply)))
+ (keymap-set rmail-mode-map "r" 'rmail-reply-t)
+ (keymap-set rmail-mode-map "R" 'rmail-reply)))
@end lisp
@node Automatically starting a mail or news reader
@lisp
(with-eval-after-load "message"
- (define-key message-mode-map [(control ?c) (tab)] 'eudc-expand-try-all))
+ (keymap-set message-mode-map "C-c <tab>" 'eudc-expand-try-all))
(with-eval-after-load "sendmail"
- (define-key mail-mode-map [(control ?c) (tab)] 'eudc-expand-try-all))
+ (keymap-set mail-mode-map "C-c <tab>" 'eudc-expand-try-all))
@end lisp
@menu
@vindex ldap-host-parameters-alist
@lisp
(with-eval-after-load "message"
- (define-key message-mode-map (kbd "TAB") 'eudc-expand-try-all))
+ (keymap-set message-mode-map "TAB" 'eudc-expand-try-all))
(setopt eudc-server-hotlist
'(("" . bbdb)
("ldaps://ldap.gnu.org" . ldap)))
@vindex ldap-host-parameters-alist
@lisp
(with-eval-after-load "message"
- (define-key message-mode-map (kbd "TAB") 'eudc-expand-try-all))
+ (keymap-set message-mode-map "TAB" 'eudc-expand-try-all))
(setopt eudc-server-hotlist
'(("" . bbdb)
("ldaps://ldap.gnu.org" . ldap)))
@vindex ldap-host-parameters-alist
@lisp
(with-eval-after-load "message"
- (define-key message-mode-map (kbd "TAB") 'eudc-expand-try-all))
+ (keymap-set message-mode-map "TAB" 'eudc-expand-try-all))
(setopt eudc-server-hotlist
'(("" . bbdb) ("" . ldap)))
(setopt ldap-host-parameters-alist
@lisp
(gnus-summary-prepared-hook
- (lambda nil (local-set-key "d" (local-key-binding "n"))))
+ (lambda nil (keymap-local-set "d" (local-key-binding "n"))))
@end lisp
when the group is entered, the 'd' key will not mark the article as
command or better use it as a prefix key. For example:
@lisp
-(define-key gnus-group-mode-map (kbd "v j d")
+(keymap-set gnus-group-mode-map "v j d"
(lambda ()
(interactive)
(gnus-group-jump-to-group "nndraft:drafts")))
The key @kbd{v} is reserved for users. You can bind it to some
command or better use it as a prefix key. For example:
@lisp
-(define-key gnus-summary-mode-map (kbd "v -") "LrS") ;; lower subthread
+(keymap-set gnus-summary-mode-map "v -" "LrS") ;; lower subthread
@end lisp
@menu
@group
(add-hook 'gnus-summary-mode-hook 'my-alter-summary-map)
(defun my-alter-summary-map ()
- (local-set-key "!" 'gnus-summary-put-mark-as-ticked-next))
+ (keymap-local-set "!" 'gnus-summary-put-mark-as-ticked-next))
@end group
@end lisp
@lisp
(defun my-alter-summary-map ()
- (local-set-key "!" "MM!n"))
+ (keymap-local-set "!" "MM!n"))
@end lisp
(gnus-summary-scroll-up arg))))
(with-eval-after-load "gnus"
- (define-key gnus-summary-mode-map
- (kbd "<RET>") 'browse-nnrss-url))
+ (keymap-set gnus-summary-mode-map "RET" 'browse-nnrss-url))
(add-to-list 'nnmail-extra-headers nnrss-url-field)
@end lisp
(nnmairix-update-groups "mairixsearch" t t)
(gnus-group-list-groups))
-(define-key gnus-group-mode-map "g" 'my-check-mail-mairix-update)
+(keymap-set gnus-group-mode-map "g" 'my-check-mail-mairix-update)
@end lisp
Instead of @samp{"mairixsearch"} use the name of your @code{nnmairix}
The line below enables BBDB in resending a message:
@lisp
-(define-key message-minibuffer-local-map [(tab)]
- 'bbdb-complete-name)
+(keymap-set message-minibuffer-local-map "TAB" 'bbdb-complete-name)
@end lisp
@item
(defun ido-my-keys ()
"Add my key bindings for Ido."
- (define-key ido-completion-map " " 'ido-next-match))
+ (keymap-set ido-completion-map "SPC" 'ido-next-match))
@end example
@c @defopt ido-setup-hook
in your @file{.emacs} and adapt to your needs:
@lisp
-(global-set-key (kbd "C-c C-o m") 'mairix-search)
-(global-set-key (kbd "C-c C-o w") 'mairix-widget-search)
-(global-set-key (kbd "C-c C-o u") 'mairix-update-database)
-(global-set-key (kbd "C-c C-o f") 'mairix-search-from-this-article)
-(global-set-key (kbd "C-c C-o t") 'mairix-search-thread-this-article)
-(global-set-key (kbd "C-c C-o b") 'mairix-widget-search-based-on-article)
-(global-set-key (kbd "C-c C-o s") 'mairix-save-search)
-(global-set-key (kbd "C-c C-o i") 'mairix-use-saved-search)
-(global-set-key (kbd "C-c C-o e") 'mairix-edit-saved-searches)
+(keymap-global-set "C-c C-o m" 'mairix-search)
+(keymap-global-set "C-c C-o w" 'mairix-widget-search)
+(keymap-global-set "C-c C-o u" 'mairix-update-database)
+(keymap-global-set "C-c C-o f" 'mairix-search-from-this-article)
+(keymap-global-set "C-c C-o t" 'mairix-search-thread-this-article)
+(keymap-global-set "C-c C-o b" 'mairix-widget-search-based-on-article)
+(keymap-global-set "C-c C-o s" 'mairix-save-search)
+(keymap-global-set "C-c C-o i" 'mairix-use-saved-search)
+(keymap-global-set "C-c C-o e" 'mairix-edit-saved-searches)
@end lisp
Here's a description of the available interactive functions:
@lisp
(add-hook 'inferior-octave-mode-hook
(lambda ()
- (define-key inferior-octave-mode-map [up]
+ (keymap-set inferior-octave-mode-map "<up>"
'comint-previous-input)
- (define-key inferior-octave-mode-map [down]
+ (keymap-set inferior-octave-mode-map "<down>"
'comint-next-input)))
@end lisp
@noindent
@lisp
(add-hook 'mail-setup-hook
- (lambda () (define-key mail-mode-map "\C-c["
+ (lambda () (keymap-set mail-mode-map "C-c ["
(lambda ()
(interactive)
(let ((reftex-cite-format 'locally))
Manual}) to very accessible keystrokes facilities using the mode:
@lisp
-(define-key global-map (kbd "<f9> r") 'remember)
-(define-key global-map (kbd "<f9> R") 'remember-region)
+(keymap-set global-map "<f9> r" 'remember)
+(keymap-set global-map "<f9> R" 'remember-region)
@end lisp
@cindex annotation
so you can just type
@lisp
-(global-set-key [f11] 'calendar) ; L1, Stop
-(global-set-key [f14] 'undo) ; L4, Undo
+(keymap-global-set "<f11>" 'calendar) ; L1, Stop
+(keymap-global-set "<f14>" 'undo) ; L4, Undo
@end lisp
@noindent
For instance,
@example
-(global-set-key [f13] 'repeat-complex-command)
+(keymap-global-set "<f13>" 'repeat-complex-command)
@end example
@noindent
Note that even though the macro uses the function key @kbd{f12}, the key is
actually free and can still be bound to some Emacs function via
-@code{define-key} or @code{global-set-key}.
+@code{define-key} or @code{keymap-global-set}.
Viper allows the user to define macro names that are prefixes of other macros.
@group
(defvar widget-ranged-integer-map
(let ((map (copy-keymap widget-keymap)))
- (define-key map [up] #'widget-ranged-integer-increase)
- (define-key map [down] #'widget-ranged-integer-decrease)
+ (keymap-set map "<up>" #'widget-ranged-integer-increase)
+ (keymap-set map "<down>" #'widget-ranged-integer-decrease)
map))
@end group
point without seeking confirmation:
@lisp
-(global-set-key "\C-cw"
- (lambda ()
- (interactive)
- (let ((woman-use-topic-at-point t))
- (woman))))
+(keymap-global-set "C-c w"
+ (lambda ()
+ (interactive)
+ (let ((woman-use-topic-at-point t))
+ (woman))))
@end lisp