Function: cider-select-endpoint
cider-select-endpoint is a byte-compiled function defined in cider.el.
Signature
(cider-select-endpoint)
Documentation
Interactively select the host and port to connect to.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider-select-endpoint ()
"Interactively select the host and port to connect to."
(dolist (endpoint cider-known-endpoints)
(unless (stringp (or (nth 2 endpoint)
(nth 1 endpoint)))
(user-error "The port for %s in `cider-known-endpoints' should be a string"
(nth 0 endpoint))))
(let* ((ssh-hosts (cider--ssh-hosts))
(hosts (seq-uniq (append (when cider-host-history
;; history elements are strings of the form "host:port"
(list (split-string (car cider-host-history) ":")))
(list (list (cider-current-host)))
cider-known-endpoints
ssh-hosts
;; always add localhost
'(("localhost")
("local-unix-domain-socket")))))
(sel-host (cider--completing-read-host hosts))
(host (car sel-host))
(port (or (cadr sel-host)
(if (equal host "local-unix-domain-socket")
(cider--completing-read-socket-file)
(cider--completing-read-port host (cider--infer-ports host ssh-hosts))))))
(cons host port)))