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