Variable: cider-repl-history-resize-window

cider-repl-history-resize-window is a customizable variable defined in cider-repl-history.el.

Value

nil

Documentation

Whether to resize the cider-repl-history window to fit its contents.

Value is either t, meaning yes, or a cons pair of integers,
 (MAXIMUM . MINIMUM) for the size of the window. MAXIMUM defaults to
the window size chosen by pop-to-buffer; MINIMUM defaults to window-min-height.

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-resize-window nil
  "Whether to resize the `cider-repl-history' window to fit its contents.
Value is either t, meaning yes, or a cons pair of integers,
 (MAXIMUM . MINIMUM) for the size of the window.  MAXIMUM defaults to
the window size chosen by `pop-to-buffer'; MINIMUM defaults to
`window-min-height'."
  :type '(choice (const :tag "No" nil)
                 (const :tag "Yes" t)
                 (cons (integer :tag "Maximum") (integer :tag "Minimum")))
  :package-version '(cider . "0.15.0"))