Function: cider--nrepl-version
cider--nrepl-version is a byte-compiled function defined in
cider-connection.el.
Signature
(cider--nrepl-version)
Documentation
Retrieve the underlying connection's nREPL version.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-connection.el
(defun cider--nrepl-version ()
"Retrieve the underlying connection's nREPL version."
(with-current-buffer (cider-current-repl)
(when nrepl-versions
(thread-first nrepl-versions
(nrepl-dict-get "nrepl")
(nrepl-dict-get "version-string")))))