Variable: cider-dynamic-indentation

cider-dynamic-indentation is a customizable variable defined in cider-mode.el.

Value

t

Documentation

Whether CIDER should aid Clojure(Script) indentation.

If non-nil, CIDER uses runtime information (such as the ":style/indent" metadata) to improve standard clojure-mode indentation. If nil, CIDER won't interfere with clojure-modes indentation.

Toggling this variable only takes effect after a file is closed and re-visited.

This variable was added, or its default value changed, in cider version 0.11.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-mode.el
;;; Dynamic indentation
(defcustom cider-dynamic-indentation t
  "Whether CIDER should aid Clojure(Script) indentation.
If non-nil, CIDER uses runtime information (such as the \":style/indent\"
metadata) to improve standard `clojure-mode' indentation.
If nil, CIDER won't interfere with `clojure-mode's indentation.

Toggling this variable only takes effect after a file is closed and
re-visited."
  :type 'boolean
  :package-version '(cider . "0.11.0")
  :group 'cider)