Function: cider

cider is an autoloaded, interactive and byte-compiled function defined in cider.el.

Signature

(cider)

Documentation

Start a connection of any type interactively.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
;;;###autoload
(defun cider ()
  "Start a connection of any type interactively."
  (interactive)
  (when-let* ((command (intern (completing-read "Select command: " cider-connection-init-commands))))
    (call-interactively command)))