Function: cider--let-go-version
cider--let-go-version is a byte-compiled function defined in
cider-session.el.
Signature
(cider--let-go-version)
Documentation
Retrieve the underlying connection's let-go version.
Formatted as "MAJOR.MINOR" since let-go's nREPL `describe` response splits the version into separate fields rather than a `version-string`.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-session.el
(defun cider--let-go-version ()
"Retrieve the underlying connection's let-go version.
Formatted as \"MAJOR.MINOR\" since let-go's nREPL `describe` response
splits the version into separate fields rather than a `version-string`."
(with-current-buffer (cider-current-repl)
(when-let* ((versions nrepl-versions)
(lg (nrepl-dict-get versions "let-go")))
(format "%s.%s"
(or (nrepl-dict-get lg "major") "?")
(or (nrepl-dict-get lg "minor") "?")))))