Variable: cider-history-display-style
cider-history-display-style is a customizable variable defined in
cider-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-history-separator between
entries.
This variable was added, or its default value changed, in cider version 0.15.0.
Aliases
cider-repl-history-display-style (obsolete since 2.0.0)
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-history.el
(defcustom cider-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-history-separator' between
entries."
:type '(choice (const :tag "One line" one-line)
(const :tag "Separated" separated))
:package-version '(cider . "0.15.0"))