Function: hsys-flymake-toggle-wraparound

hsys-flymake-toggle-wraparound is an interactive and byte-compiled function defined in hsys-flymake.el.

Signature

(hsys-flymake-toggle-wraparound)

Documentation

Toggle flymake minor mode on or off in the current buffer.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-flymake.el
(defun hsys-flymake-toggle-wraparound ()
  "Toggle flymake minor mode on or off in the current buffer."
  (interactive)
  (when (and (featurep 'flymake) flymake-mode)
    (setq flymake-wrap-around (not flymake-wrap-around))
    (when (called-interactively-p 'interactive)
      (message "%s flymake-mode next and previous issue search wraparound to buffer start"
	       (if flymake-wrap-around "Enabled" "Disabled")))))