Function: cider-scratch--buffer-name

cider-scratch--buffer-name is a byte-compiled function defined in cider-scratch.el.

Signature

(cider-scratch--buffer-name SESSION-NAME)

Documentation

Return the scratch buffer name for SESSION-NAME (nil for the session-less one).

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-scratch.el
(defun cider-scratch--buffer-name (session-name)
  "Return the scratch buffer name for SESSION-NAME (nil for the session-less one)."
  (if session-name
      (format "*cider-scratch: %s*" session-name)
    cider-scratch-buffer-name))