Variable: cider-repl-history-highlight-inserted-item

cider-repl-history-highlight-inserted-item is a customizable variable defined in cider-repl-history.el.

Value

nil

Documentation

If non-nil, then temporarily highlight the inserted command history entry.

The value selected controls how the inserted item is highlighted, possible values are solid (highlight the inserted text for a fixed period of time), or pulse (fade out the highlighting gradually). Setting this variable to the value t will select the default highlighting style, which currently pulse.

The variable cider-repl-history-inserted-item-face contains the face used for highlighting.

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-repl-history.el
(defcustom cider-repl-history-highlight-inserted-item nil
  "If non-nil, then temporarily highlight the inserted command history entry.
The value selected controls how the inserted item is highlighted,
possible values are `solid' (highlight the inserted text for a
fixed period of time), or `pulse' (fade out the highlighting gradually).
Setting this variable to the value t will select the default
highlighting style, which currently `pulse'.

The variable `cider-repl-history-inserted-item-face' contains the
face used for highlighting."
  :type '(choice (const nil) (const t) (const solid) (const pulse))
  :package-version '(cider . "0.15.0"))