Variable: cider-inline-error-message-function

cider-inline-error-message-function is a customizable variable defined in cider-compilation.el.

Value

cider--shorten-error-message

Documentation

A function that will shorten a given error message, as shown in overlays / the minibuffer (per cider-eval-result-display).

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-20260822.1520/cider-compilation.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-eval-result-display').

The function takes a single arg.  You may want to use `identity',
for leaving the message as-is."
  :type 'function
  :group 'cider
  :package-version '(cider . "1.19.0"))