Function: cider--disconnected-handler
cider--disconnected-handler is a byte-compiled function defined in
cider-connection.el.
Signature
(cider--disconnected-handler)
Documentation
Cleanup after nREPL connection has been lost or closed.
This function is appended to nrepl-disconnected-hook in the client
process buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-connection.el
(defun cider--disconnected-handler ()
"Cleanup after nREPL connection has been lost or closed.
This function is appended to `nrepl-disconnected-hook' in the client
process buffer."
;; `nrepl-connected-hook' is run in the connection buffer
(when cider-auto-mode
(cider-possibly-disable-on-existing-clojure-buffers))
(run-hooks 'cider-disconnected-hook))