Variable: clojure-defun-indents

clojure-defun-indents is a customizable variable defined in clojure-mode.el.

Value

nil

Documentation

List of additional symbols with defun-style indentation in Clojure.

You can use this to let Emacs indent your own macros the same way that it indents built-in macros like with-open. This variable only works when set via the customize interface (setq won't work). To set it from Lisp code, use
     (put-clojure-indent 'some-symbol :defn).

Source Code

;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
(defcustom clojure-defun-indents nil
  "List of additional symbols with defun-style indentation in Clojure.

You can use this to let Emacs indent your own macros the same way
that it indents built-in macros like with-open.  This variable
only works when set via the customize interface (`setq' won't
work).  To set it from Lisp code, use
     (put-clojure-indent \\='some-symbol :defn)."
  :type '(repeat symbol)
  :set 'add-custom-clojure-indents)