Function: cider-interrupt

cider-interrupt is an interactive and byte-compiled function defined in cider-client.el.

Signature

(cider-interrupt)

Documentation

Interrupt any pending evaluations.

In a .cljc buffer this interrupts every REPL that evaluations are dispatched to (both Clojure and ClojureScript), mirroring cider-map-repls.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-client.el
(defun cider-interrupt ()
  "Interrupt any pending evaluations.
In a `.cljc' buffer this interrupts every REPL that evaluations are
dispatched to (both Clojure and ClojureScript), mirroring `cider-map-repls'."
  (interactive)
  (cider-map-repls :auto #'cider-interrupt-repl))