Variable: cider-repl-history-maximum-display-length
cider-repl-history-maximum-display-length is a customizable variable
defined in cider-repl-history.el.
Value
nil
Documentation
Whether or not to limit the length of displayed items.
If this variable is an integer, the display of the command history will be limited to that many characters. Setting this variable to nil means no limit.
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-maximum-display-length nil
"Whether or not to limit the length of displayed items.
If this variable is an integer, the display of the command history will be
limited to that many characters.
Setting this variable to nil means no limit."
:type '(choice (const :tag "None" nil)
integer)
:package-version '(cider . "0.15.0"))