Function: cider-open-classpath-entry

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

Signature

(cider-open-classpath-entry)

Documentation

Open a classpath entry.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-classpath.el
;;;###autoload
(defun cider-open-classpath-entry ()
  "Open a classpath entry."
  (interactive)
  (cider-ensure-connected)
  (when-let* ((entry (completing-read "Classpath entries: " (cider-classpath-entries))))
    (find-file-other-window entry)))