Function: cider-cycle-eval-destination

cider-cycle-eval-destination is an interactive and byte-compiled function defined in cider-session.el.

Signature

(cider-cycle-eval-destination)

Documentation

Cycle the current buffer's eval dispatch through cider-eval-destinations.

See cider-set-eval-destination.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-session.el
(defun cider-cycle-eval-destination ()
  "Cycle the current buffer's eval dispatch through `cider-eval-destinations'.
See `cider-set-eval-destination'."
  (interactive)
  (let* ((current (or cider-repl-type-override 'auto))
         (tail (cdr (memq current cider-eval-destinations)))
         (next (or (car tail) (car cider-eval-destinations))))
    (cider-set-eval-destination next)))