Function: cider--pinned-repl

cider--pinned-repl is a byte-compiled function defined in cider-session.el.

Signature

(cider--pinned-repl)

Documentation

Return the REPL the current buffer is pinned to, or nil.

The pin lives in cider--pinned-repl-buffer; a dead pin yields nil.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-session.el
(defun cider--pinned-repl ()
  "Return the REPL the current buffer is pinned to, or nil.
The pin lives in `cider--pinned-repl-buffer'; a dead pin yields nil."
  (and (buffer-live-p cider--pinned-repl-buffer)
       cider--pinned-repl-buffer))