Function: epa-show-key

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

Signature

(epa-show-key)

Documentation

Show a key on the current line.

Key Bindings

Source Code

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

(defun epa-show-key ()
  "Show a key on the current line."
  (interactive)
  (if-let* ((key (get-text-property (point) 'epa-key)))
      (save-selected-window
        (epa--show-key key))
    (error "No key on this line")))