Variable: cider-repl-use-content-types

cider-repl-use-content-types is a customizable variable defined in cider-repl.el.

Value

t

Documentation

Control whether REPL results are presented using content-type information.

When enabled, evaluation results that are images render inline in the REPL, and results naming external content (files, URLs) offer a button that fetches and renders it on demand. The cider-repl-toggle-content-types command can be used to interactively change the setting's value.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260821.817/cider-repl.el
(defcustom cider-repl-use-content-types t
  "Control whether REPL results are presented using content-type information.
When enabled, evaluation results that are images render inline in the REPL,
and results naming external content (files, URLs) offer a button that
fetches and renders it on demand.
The `cider-repl-toggle-content-types' command can be used to interactively
change the setting's value."
  :type 'boolean
  :package-version '(cider . "2.0.0"))