Variable: cider-download-java-sources
cider-download-java-sources is a customizable variable defined in
cider-client.el.
Value
t
Documentation
Whether to automatically download source artifacts for 3rd-party Java classes.
When enabled, CIDER will attempt to download source JARs from Maven for
Java classes if the source file is not found locally. This downloading only
happens once per artifact, and only when the user jumps to definition or
requests cider-doc on a Java class or a member of the class.
This variable was added, or its default value changed, in cider version 1.17.1.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
(defcustom cider-download-java-sources t
"Whether to automatically download source artifacts for 3rd-party Java classes.
When enabled, CIDER will attempt to download source JARs from Maven for
Java classes if the source file is not found locally. This downloading only
happens once per artifact, and only when the user jumps to definition or
requests `cider-doc' on a Java class or a member of the class."
:type 'boolean
:group 'cider
:package-version '(cider . "1.17.1"))