Function: cider-clear-compilation-highlights

cider-clear-compilation-highlights is an interactive and byte-compiled function defined in cider-eval.el.

Signature

(cider-clear-compilation-highlights &optional ARG)

Documentation

Remove compilation highlights.

When invoked with a prefix ARG the command doesn't prompt for confirmation.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defun cider-clear-compilation-highlights (&optional arg)
  "Remove compilation highlights.
When invoked with a prefix ARG the command doesn't prompt for confirmation."
  (interactive "P")
  (when (or arg (y-or-n-p "Are you sure you want to clear the compilation highlights? "))
    (cider--clear-compilation-highlights)))