Variable: cider-print-quota

cider-print-quota is a customizable variable defined in cider-client.el.

Value

1048576

Documentation

A hard limit on the number of bytes to return from any printing operation.

Set to nil for no limit.

This variable was added, or its default value changed, in cider version 0.21.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
(defcustom cider-print-quota (* 1024 1024)
  "A hard limit on the number of bytes to return from any printing operation.
Set to nil for no limit."
  :type 'integer
  :group 'cider
  :package-version '(cider . "0.21.0"))