Function: cider--nbb-nrepl-version
cider--nbb-nrepl-version is a byte-compiled function defined in
cider-connection.el.
Signature
(cider--nbb-nrepl-version)
Documentation
Retrieve the underlying connection's nbb version.
Note that this is currently not a real version number. But helps us know if this is a nbb repl, or not.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-connection.el
(defun cider--nbb-nrepl-version ()
"Retrieve the underlying connection's nbb version.
Note that this is currently not a real version number.
But helps us know if this is a nbb repl, or not."
(with-current-buffer (cider-current-repl)
(when nrepl-versions
(nrepl-dict-get nrepl-versions "nbb-nrepl"))))