Variable: cider-ns-code-reload-tool
cider-ns-code-reload-tool is a customizable variable defined in
cider-ns.el.
Value
tools.namespace
Documentation
Which tool to use for ns refresh.
Current options: tools.namespace and clj-reload.
This variable was added, or its default value changed, in cider version 1.14.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-ns.el
(defcustom cider-ns-code-reload-tool 'tools.namespace
"Which tool to use for ns refresh.
Current options: tools.namespace and clj-reload."
:group 'cider
:type '(choice (const :tag "tools.namespace https://github.com/clojure/tools.namespace" tools.namespace)
(const :tag "clj-reload https://github.com/tonsky/clj-reload" clj-reload))
:package-version '(cider . "1.14.0"))