Variable: cider-ns-refresh-after-fn

cider-ns-refresh-after-fn is a customizable variable defined in cider-ns.el.

Value

nil

Documentation

Clojure function for cider-ns-refresh to call after reloading.

If nil, nothing will be invoked after reloading. Must be a namespace-qualified function of zero arity.

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-after-fn nil
  "Clojure function for `cider-ns-refresh' to call after reloading.
If nil, nothing will be invoked after reloading.  Must be a
namespace-qualified function of zero arity."
  :type 'string
  :group 'cider
  :package-version '(cider . "0.10.0"))