Variable: cider-repl-history-display-style

cider-repl-history-display-style is a customizable variable defined in cider-repl-history.el.

Value

separated

Documentation

How to display the CIDER command history items.

If one-line, then replace newlines with "\\n" for display.

If separated, then display cider-repl-history-separator between entries.

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-display-style 'separated
  "How to display the CIDER command history items.

If `one-line', then replace newlines with \"\\n\" for display.

If `separated', then display `cider-repl-history-separator' between
entries."
  :type '(choice (const :tag "One line" one-line)
                 (const :tag "Separated" separated))
  :package-version '(cider . "0.15.0"))