Function: cider-repl-toggle-content-types

cider-repl-toggle-content-types is an interactive and byte-compiled function defined in cider-repl.el.

Signature

(cider-repl-toggle-content-types)

Documentation

Toggle content-type rendering in the REPL.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-toggle-content-types ()
  "Toggle content-type rendering in the REPL."
  (interactive)
  (setq cider-repl-use-content-types (not cider-repl-use-content-types))
  (message "Content-type support in REPL %s."
           (if cider-repl-use-content-types "enabled" "disabled")))