Variable: embark-identifier-map

embark-identifier-map is a variable defined in embark.el.

Value

Large value
$      ispell-word
'      expand-abbrev
-      negative-argument
0      digit-argument
1      digit-argument
2      digit-argument
3      digit-argument
4      digit-argument
5      digit-argument
6      digit-argument
7      digit-argument
8      digit-argument
9      digit-argument
A      embark-act-all
B      embark-become
C-SPC  mark
C-r    embark-isearch-backward
C-s    embark-isearch-forward
DEL    delete-region
E      embark-export
H      embark-toggle-highlight
L      embark-live
RET    xref-find-definitions
S      embark-collect
SPC    embark-select
a      xref-find-apropos
d      xref-find-definitions
h      display-local-help
i      embark-insert
n      embark-next-symbol
o      occur
p      embark-previous-symbol
q      embark-toggle-quit
r      xref-find-references
s      info-lookup-symbol
w      embark-copy-as-kill

Documentation

Keymap for Embark identifier actions.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defvar-keymap embark-identifier-map
  :doc "Keymap for Embark identifier actions."
  :parent embark-general-map
  "RET" #'xref-find-definitions
  "h" #'display-local-help
  "H" #'embark-toggle-highlight
  "d" #'xref-find-definitions
  "r" #'xref-find-references
  "a" #'xref-find-apropos
  "s" #'info-lookup-symbol
  "n" #'embark-next-symbol
  "p" #'embark-previous-symbol
  "'" #'expand-abbrev
  "$" #'ispell-word
  "o" #'occur)