Variable: clojure-get-indent-function
clojure-get-indent-function is a variable defined in clojure-mode.el.
Value
nil
Documentation
Function to get the indent spec of a symbol.
This function should take one argument, the name of the symbol as a string. This name will be exactly as it appears in the buffer, so it might start with a namespace alias.
Return values can be in either the modern format (e.g.,
'((:block 1) (:inner 0))) or the legacy format (e.g., 1 or
:defn). Modern-format specs are automatically converted to
legacy format for the backtracking indent engine.
This is typically set by CIDER to provide runtime-aware indentation specs.
Source Code
;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
(defvar clojure-get-indent-function nil
"Function to get the indent spec of a symbol.
This function should take one argument, the name of the symbol as
a string. This name will be exactly as it appears in the buffer,
so it might start with a namespace alias.
Return values can be in either the modern format (e.g.,
\\='((:block 1) (:inner 0))) or the legacy format (e.g., 1 or
:defn). Modern-format specs are automatically converted to
legacy format for the backtracking indent engine.
This is typically set by CIDER to provide runtime-aware
indentation specs.")