Function: cider--remove-result-overlay-after-command
cider--remove-result-overlay-after-command is a byte-compiled function
defined in cider-overlays.el.
Signature
(cider--remove-result-overlay-after-command)
Documentation
Add cider--remove-result-overlay locally to post-command-hook.
This function also removes itself from post-command-hook.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-overlays.el
(defun cider--remove-result-overlay-after-command ()
"Add `cider--remove-result-overlay' locally to `post-command-hook'.
This function also removes itself from `post-command-hook'."
(remove-hook 'post-command-hook #'cider--remove-result-overlay-after-command 'local)
(add-hook 'post-command-hook #'cider--remove-result-overlay nil 'local))