Variable: nrepl-message-buffer-reduce-denominator

nrepl-message-buffer-reduce-denominator is a variable defined in nrepl-client.el.

Value

4

Documentation

Divisor by which to reduce message buffer size.

When the maximum size for the nREPL message buffer is exceeded, the size of the buffer is reduced by one over this value. Defaults to 4, so that 1/4 of the buffer is removed, which should ensure the buffer's maximum is reasonably utilized, while limiting the number of buffer shrinking operations.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defconst nrepl-message-buffer-reduce-denominator 4
  "Divisor by which to reduce message buffer size.
When the maximum size for the nREPL message buffer is exceeded, the size of
the buffer is reduced by one over this value.  Defaults to 4, so that 1/4
of the buffer is removed, which should ensure the buffer's maximum is
reasonably utilized, while limiting the number of buffer shrinking
operations.")