Function: cider-classpath
cider-classpath is an autoloaded, interactive and byte-compiled
function defined in cider-classpath.el.
Signature
(cider-classpath)
Documentation
List all classpath entries.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-classpath.el
;;;###autoload
(defun cider-classpath ()
"List all classpath entries."
(interactive)
(cider-ensure-connected)
(with-current-buffer (cider-popup-buffer cider-classpath-buffer 'select nil 'ancillary)
(cider-classpath-list (current-buffer)
(mapcar (lambda (name)
(cider-classpath-properties name))
(cider-classpath-entries)))))