Function: forge--insert-topic
forge--insert-topic is a byte-compiled function defined in
forge-topic.el.
Signature
(forge--insert-topic TOPIC &optional WIDTH)
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-topic.el
(defun forge--insert-topic (topic &optional width)
(magit-insert-section ((eval (oref topic closql-table)) topic t)
(insert (forge--format-topic-line topic (or width 5)))
(forge--insert-topic-marks topic t)
(forge--insert-topic-labels topic t)
(insert "\n")
(magit-log-format-author-margin
(oref topic author)
(format-time-string "%s" (parse-iso8601-time-string (oref topic created))))
(when (and (slot-exists-p topic 'merged)
(not (oref topic merged)))
(magit-insert-heading)
(magit-insert-section-body
(forge--insert-pullreq-commits topic)))))