Function: cider--reflect-eval-destination-in-mode-line

cider--reflect-eval-destination-in-mode-line is a byte-compiled function defined in cider-session.el.

Signature

(cider--reflect-eval-destination-in-mode-line)

Documentation

Show the buffer's cider-repl-type-override in the mode line, if any.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-session.el
(defun cider--reflect-eval-destination-in-mode-line ()
  "Show the buffer's `cider-repl-type-override' in the mode line, if any."
  (setq-local mode-line-process
              (when cider-repl-type-override
                (format " [%s]" cider-repl-type-override)))
  (force-mode-line-update))