Variable: cider-repl-image-margin

cider-repl-image-margin is a customizable variable defined in cider-repl.el.

Value

10

Documentation

Specifies the margin to be applied to images displayed in the REPL.

Either a single number of pixels - interpreted as a symmetric margin, or pair of numbers (x . y) encoding an arbitrary margin.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defcustom cider-repl-image-margin 10
  "Specifies the margin to be applied to images displayed in the REPL.
Either a single number of pixels - interpreted as a symmetric margin, or
pair of numbers `(x . y)' encoding an arbitrary margin."
  :type '(choice integer (vector integer integer))
  :package-version '(cider . "0.17.0"))