Variable: cider-print-options

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

Value

nil

Documentation

A map of options that will be passed to cider-print-fn.

Here's an example for pprint:

  '(("length" 50) ("right-margin" 70))

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-options nil
  "A map of options that will be passed to `cider-print-fn'.
Here's an example for `pprint':

  \\='((\"length\" 50) (\"right-margin\" 70))"
  :type '(repeat sexp)
  :group 'cider
  :package-version '(cider . "0.21.0"))