Function: forge-notifications-display-inbox

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

Signature

(forge-notifications-display-inbox)

Documentation

List unread and pending notifications.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-notify.el
(transient-define-suffix forge-notifications-display-inbox ()
  "List unread and pending notifications."
  :description "inbox"
  :inapt-if (##equal forge-notifications-selection '(unread pending))
  :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))
  (forge-refresh-buffer))