Variable: cider-eldoc-display-for-symbol-at-point

cider-eldoc-display-for-symbol-at-point is a customizable variable defined in cider-eldoc.el.

Value

t

Documentation

When non-nil, display eldoc for symbol at point if available.

So in (map inc ...) when the cursor is over inc its eldoc would be displayed. When nil, always display eldoc for first symbol of the sexp.

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-display-for-symbol-at-point t
  "When non-nil, display eldoc for symbol at point if available.
So in (map inc ...) when the cursor is over inc its eldoc would be
displayed.  When nil, always display eldoc for first symbol of the sexp."
  :type 'boolean
  :safe #'booleanp
  :group 'cider
  :package-version '(cider . "0.13.0"))