Closed
Description
It can be difficult to read code, especially large regions of code, that have an error overlay applied. AFAIK, Emacs does not provide a command for removing overlays, so one needs to M-: (delete-all-overlays) RET
to remove the error. This is a hassle. I've currently bound this procedure to C-x C-M-e
:
(defun cider-clear-errors ()
(interactive)
(delete-all-overlays))
Metadata
Metadata
Assignees
Labels
No labels