Variable: cider-eldoc-display-context-dependent-info
cider-eldoc-display-context-dependent-info is a customizable variable
defined in cider-eldoc.el.
Value
nil
Documentation
When non-nil, display context dependent info in the eldoc where possible.
CIDER will try to add expected function arguments based on the current context, for example for the datomic.api/q function where it will show the expected inputs of the query at point.
This variable was added, or its default value changed, in cider version 0.15.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eldoc.el
(defcustom cider-eldoc-display-context-dependent-info nil
"When non-nil, display context dependent info in the eldoc where possible.
CIDER will try to add expected function arguments based on the current context,
for example for the datomic.api/q function where it will show the expected
inputs of the query at point."
:type 'boolean
:group 'cider
:package-version '(cider . "0.15.0"))