Variable: clojure-enable-indent-specs
clojure-enable-indent-specs is a customizable variable defined in
clojure-mode.el.
Value
t
Documentation
Control whether to honor indent specs.
They can be either set via metadata on the function/macro, or via
define-clojure-indent. Set this to nil to get uniform
formatting of all forms.
This variable was added, or its default value changed, in clojure-mode version 5.19.0.
Source Code
;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
(defcustom clojure-enable-indent-specs t
"Control whether to honor indent specs.
They can be either set via metadata on the function/macro, or via
`define-clojure-indent'. Set this to nil to get uniform
formatting of all forms."
:type 'boolean
:safe #'booleanp
:package-version '(clojure-mode . "5.19.0"))