Function: forge-delete-comment
forge-delete-comment is an interactive and byte-compiled function
defined in forge-commands.el.
Signature
(forge-delete-comment)
Documentation
Delete the comment at point.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-commands.el
;;; Delete
(transient-define-suffix forge-delete-comment ()
"Delete the comment at point."
:description "delete comment"
:inapt-if-not #'forge-comment-at-point
(interactive)
(let ((comment (forge-comment-at-point t)))
(when (yes-or-no-p "Really delete the current comment? ")
(forge--delete-comment (forge-get-repository :tracked) comment))))