Function: nrepl--make-hidden-name
nrepl--make-hidden-name is a byte-compiled function defined in
nrepl-client.el.
Signature
(nrepl--make-hidden-name BUFFER-NAME)
Documentation
Apply a prefix to BUFFER-NAME that will hide the buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun nrepl--make-hidden-name (buffer-name)
"Apply a prefix to BUFFER-NAME that will hide the buffer."
(concat (if nrepl-hide-special-buffers " " "") buffer-name))