Function: cider-history-cleanup-on-exit

cider-history-cleanup-on-exit is a byte-compiled function defined in cider-history.el.

Signature

(cider-history-cleanup-on-exit)

Documentation

Function called when the user is finished with cider-history.

This function performs any cleanup that is required when the user has finished interacting with the *cider-history* buffer. For now the only cleanup performed is to remove the preview overlay, if it's turned on.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-history.el
(defun cider-history-cleanup-on-exit ()
  "Function called when the user is finished with `cider-history'.
This function performs any cleanup that is required when the user
has finished interacting with the *cider-history* buffer.  For now
the only cleanup performed is to remove the preview overlay, if
it's turned on."
  (cider-history-clear-preview))