Variable: cider-ns-refresh-before-fn
cider-ns-refresh-before-fn is a customizable variable defined in
cider-ns.el.
Value
nil
Documentation
Clojure function for cider-ns-refresh to call before reloading.
If nil, nothing will be invoked before reloading. Must be a namespace-qualified function of zero arity. Any thrown exception will prevent reloading from occurring.
This variable was added, or its default value changed, in cider version 0.10.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-ns.el
(defcustom cider-ns-refresh-before-fn nil
"Clojure function for `cider-ns-refresh' to call before reloading.
If nil, nothing will be invoked before reloading. Must be a
namespace-qualified function of zero arity. Any thrown exception will
prevent reloading from occurring."
:type 'string
:group 'cider
:package-version '(cider . "0.10.0"))