Function: forge-notifications-display-saved

forge-notifications-display-saved is an interactive and byte-compiled function defined in forge-notify.el.

Signature

(forge-notifications-display-saved)

Documentation

List saved notifications.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-notify.el
(transient-define-suffix forge-notifications-display-saved ()
  "List saved notifications."
  :description "saved"
  :inapt-if (##eq forge-notifications-selection 'saved)
  :inapt-face 'forge-suffix-active
  (interactive)
  (unless (derived-mode-p 'forge-notifications-mode)
    (user-error "Not in notification buffer"))
  (setq forge-notifications-selection 'saved)
  (forge-refresh-buffer))