Variable: cider-inline-error-message-function
cider-inline-error-message-function is a customizable variable defined
in cider-eval.el.
Value
cider--shorten-error-message
Documentation
A function that will shorten a given error message,
as shown in overlays / the minibuffer (per cider-use-overlays).
The function takes a single arg. You may want to use identity,
for leaving the message as-is.
This variable was added, or its default value changed, in cider version 1.19.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defcustom cider-inline-error-message-function #'cider--shorten-error-message
"A function that will shorten a given error message,
as shown in overlays / the minibuffer (per `cider-use-overlays').
The function takes a single arg. You may want to use `identity',
for leaving the message as-is."
:type 'boolean
:group 'cider
:package-version '(cider . "1.19.0"))