Function: epa-ks-search-mode
epa-ks-search-mode is an interactive and byte-compiled function
defined in epa-ks.el.gz.
Signature
(epa-ks-search-mode)
Documentation
Major mode for listing public key search results.
In addition to any hooks its parent mode tabulated-list-mode might
have run, this mode runs the hook epa-ks-search-mode-hook, as the
final or penultimate step during initialization.
- 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
SPC..~ undefined
f epa-ks-mark-key-to-fetch
i epa-ks-inspect-key-to-fetch
u epa-ks-unmark-key-to-fetch
x epa-ks-do-key-to-fetch
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/epa-ks.el.gz
(define-derived-mode epa-ks-search-mode tabulated-list-mode "Keyserver"
"Major mode for listing public key search results."
(buffer-disable-undo)
(setq tabulated-list-format [("ID" 8 t)
("Algo." 5 nil)
("Created" 10 t)
("Expires" 10 t)
("User" 0 t)]
tabulated-list-sort-key '("User" . nil)
tabulated-list-padding 2)
(add-hook 'tabulated-list-revert-hook
#'epa-ks--restart-search
nil t)
(tabulated-list-init-header))