Function: epa-key-list-mode

epa-key-list-mode is an interactive and byte-compiled function defined in epa.el.gz.

Signature

(epa-key-list-mode)

Documentation

Major mode for epa-list-keys.

In addition to any hooks its parent mode special-mode might have run, this mode runs the hook epa-key-list-mode-hook, as the final or penultimate step during initialization.

<backtab> backward-button
<delete> scroll-down-command
RET epa-show-key
S-SPC scroll-down-command
SPC scroll-up-command
TAB forward-button
d epa-decrypt-file
e epa-encrypt-file
g revert-buffer
i epa-import-keys
m epa-mark-key
n next-line
o epa-export-keys
p previous-line
q epa-exit-buffer
r epa-delete-keys
s epa-sign-file
u epa-unmark-key
v epa-verify-file

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/epa.el.gz
;;; Modes

(define-derived-mode epa-key-list-mode special-mode "EPA Keys"
  "Major mode for `epa-list-keys'."
  (buffer-disable-undo)
  (setq truncate-lines t
	buffer-read-only t)
  (make-local-variable 'epa-exit-buffer-function)
  (setq-local revert-buffer-function #'epa--key-list-revert-buffer))