Function: forge-notifications-display-done

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

Signature

(forge-notifications-display-done)

Documentation

List done notifications.

Key Bindings

Source Code

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