Variable: cider-known-endpoints
cider-known-endpoints is a customizable variable defined in cider.el.
Value
nil
Documentation
A list of connection endpoints where each endpoint is a list.
For example: '(("label" "host" "port")).
The label is optional so that '("host" "port") will suffice.
This variable is used by cider-connect.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defcustom cider-known-endpoints nil
"A list of connection endpoints where each endpoint is a list.
For example: \\='((\"label\" \"host\" \"port\")).
The label is optional so that \\='(\"host\" \"port\") will suffice.
This variable is used by `cider-connect'."
:type '(repeat (list (string :tag "label")
(string :tag "host")
(string :tag "port"))))