Function: hsys-flymake-insert-issue-at-point
hsys-flymake-insert-issue-at-point is an interactive and byte-compiled
function defined in hsys-flymake.el.
Signature
(hsys-flymake-insert-issue-at-point)
Documentation
With flymake enabled and point on its highlighted text, insert the issue.
Issue is inserted into the buffer after the current visible line.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-flymake.el
(defun hsys-flymake-insert-issue-at-point ()
"With flymake enabled and point on its highlighted text, insert the issue.
Issue is inserted into the buffer after the current visible line."
(interactive)
(let ((issue (hsys-flymake-get-issue-at-position)))
(when issue
(save-excursion
(end-of-visible-line)
(insert "\n" issue "\n")))))