Variable: cider-stacktrace-fill-column

cider-stacktrace-fill-column is a customizable variable defined in cider-stacktrace.el.

Value

t

Documentation

Fill column for error messages in stacktrace display.

If nil, messages will not be wrapped. If truthy but non-numeric, fill-column will be used.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-stacktrace.el
(defcustom cider-stacktrace-fill-column t
  "Fill column for error messages in stacktrace display.
If nil, messages will not be wrapped.  If truthy but non-numeric,
`fill-column' will be used."
  :type '(radio
          (integer :tag "Fill Column")
          (const :tag "None" nil)
          (const :tag "Use default fill-column" t))
  :package-version '(cider . "0.7.0"))