Variable: cider-inspector-preferred-var-names

cider-inspector-preferred-var-names is a customizable variable defined in cider-inspector.el.

Value

nil

Documentation

The preferred var names to be suggested by cider-inspector-def-current-val.

If you choose a different one while completing interactively, it will be included (in the first position) the next time you use cider-inspector-def-current-val.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defcustom cider-inspector-preferred-var-names nil
  "The preferred var names to be suggested by `cider-inspector-def-current-val'.

If you choose a different one while completing interactively,
it will be included (in the first position) the next time
you use `cider-inspector-def-current-val'."
  :type '(repeat string)
  :group 'cider
  :package-version '(cider . "1.8.0"))