Function: cider--invoke-running-nrepl-path
cider--invoke-running-nrepl-path is a byte-compiled function defined
in cider-endpoint.el.
Signature
(cider--invoke-running-nrepl-path F)
Documentation
Invoke F safely, returning only pairs whose directory still exists.
Necessary since we run some OS-specific commands that may fail.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-endpoint.el
(defun cider--invoke-running-nrepl-path (f)
"Invoke F safely, returning only pairs whose directory still exists.
Necessary since we run some OS-specific commands that may fail."
(condition-case nil
(seq-filter (lambda (v)
(or (not (listp v))
(file-exists-p (car v))))
(funcall f))
(error nil)))