Function: forge-notifications-style-nested

forge-notifications-style-nested is an interactive and byte-compiled function defined in forge-notify.el.

Signature

(forge-notifications-style-nested)

Documentation

Group notifications by repository.

Key Bindings

Source Code

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