Variable: cider-eldoc-max-class-names-to-display

cider-eldoc-max-class-names-to-display is a customizable variable defined in cider-eldoc.el.

Value

3

Documentation

The maximum number of classes to display in an eldoc string.

An eldoc string for Java interop forms can have a number of classes prefixed to it, when the form belongs to more than 1 class. When, not nil we only display the names of first cider-eldoc-max-class-names-to-display classes and add a "& x more" suffix. Otherwise, all the classes are displayed.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eldoc.el
(defcustom cider-eldoc-max-class-names-to-display 3
  "The maximum number of classes to display in an eldoc string.
An eldoc string for Java interop forms can have a number of classes prefixed to
it, when the form belongs to more than 1 class.  When, not nil we only display
the names of first `cider-eldoc-max-class-names-to-display' classes and add
a \"& x more\" suffix. Otherwise, all the classes are displayed."
  :type 'integer
  :safe #'integerp
  :group 'cider
  :package-version '(cider . "0.13.0"))