Variable: embark-bookmark-map

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

Value

Large value
$      eshell
-      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
<      bookmark-insert
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
L      embark-live
R      bookmark-relocate
RET    bookmark-jump
S      embark-collect
SPC    embark-select
a      bookmark-show-annotation
b      bookmark-jump
d      bookmark-delete
e      bookmark-edit-annotation
f      bookmark-jump-other-frame
i      embark-insert
j      embark-dired-jump
l      bookmark-locate
o      bookmark-jump-other-window
q      embark-toggle-quit
r      bookmark-rename
s      bookmark-set
w      embark-copy-as-kill
x      embark-open-externally

Documentation

Keymap for Embark bookmark actions.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defvar-keymap embark-bookmark-map
  :doc "Keymap for Embark bookmark actions."
  :parent embark-general-map
  "RET" #'bookmark-jump
  "b" #'bookmark-jump
  "s" #'bookmark-set
  "d" #'bookmark-delete
  "r" #'bookmark-rename
  "R" #'bookmark-relocate
  "l" #'bookmark-locate
  "<" #'bookmark-insert
  "o" #'bookmark-jump-other-window
  "f" #'bookmark-jump-other-frame
  "a" 'bookmark-show-annotation
  "e" 'bookmark-edit-annotation
  "x" #'embark-open-externally
  "j" #'embark-dired-jump
  "$" #'eshell)