Function: cider-describe-connection

cider-describe-connection is an interactive and byte-compiled function defined in cider-connection.el.

Signature

(cider-describe-connection &optional REPL)

Documentation

Display information about the connection associated with REPL.

REPL defaults to the current REPL.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-connection.el
(defun cider-describe-connection (&optional repl)
  "Display information about the connection associated with REPL.
REPL defaults to the current REPL."
  (interactive)
  (let ((repl (or repl
                  (sesman-browser-get 'object)
                  (cider-current-repl 'infer 'ensure))))
    (message "%s" (cider--connection-info repl))))