Variable: clojure-docstring-fill-prefix-width
clojure-docstring-fill-prefix-width is a customizable variable defined
in clojure-mode.el.
Value
2
Documentation
Width of fill-prefix when filling a docstring.
The default value conforms with the de facto convention for Clojure docstrings, aligning the second line with the opening double quotes on the third column.
Source Code
;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
(defcustom clojure-docstring-fill-prefix-width 2
"Width of `fill-prefix' when filling a docstring.
The default value conforms with the de facto convention for
Clojure docstrings, aligning the second line with the opening
double quotes on the third column."
:type 'integer
:safe 'integerp)