Function: nrepl-sessions
nrepl-sessions is a byte-compiled function defined in nrepl-client.el.
Signature
(nrepl-sessions CONNECTION)
Documentation
Get a list of active sessions on the nREPL server using CONNECTION.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun nrepl-sessions (connection)
"Get a list of active sessions on the nREPL server using CONNECTION."
(nrepl-dict-get (nrepl-sync-request:ls-sessions connection) "sessions"))