Function: forge-notifications-display-all
forge-notifications-display-all is an interactive and byte-compiled
function defined in forge-notify.el.
Signature
(forge-notifications-display-all)
Documentation
List all notifications.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-notify.el
(transient-define-suffix forge-notifications-display-all ()
"List all notifications."
:description "all"
:inapt-if (##equal forge-notifications-selection '(unread pending done))
:inapt-face 'forge-suffix-active
(interactive)
(unless (derived-mode-p 'forge-notifications-mode)
(user-error "Not in notification buffer"))
(setq forge-notifications-selection '(unread pending done))
(forge-refresh-buffer))