Function: cider--path->path-port-pairs
cider--path->path-port-pairs is a byte-compiled function defined in
cider-endpoint.el.
Signature
(cider--path->path-port-pairs PATH)
Documentation
Return all the possible <path, port> pairs for PATH.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-endpoint.el
(defun cider--path->path-port-pairs (path)
"Return all the possible <path, port> pairs for PATH."
(thread-last path
cider--file-path
nrepl-extract-ports
(mapcar (lambda (port)
(list path port)))))