Function: cider-eval-pprint-menu

cider-eval-pprint-menu is an autoloaded, interactive and byte-compiled function defined in cider-eval.el.

Signature

(cider-eval-pprint-menu)

Documentation

Transient menu for CIDER's pretty-printing eval commands.

The print-function argument picks the printer (pr, pprint, fipp, puget, zprint, or a custom var) for this invocation only.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
;;;###autoload (autoload 'cider-eval-pprint-menu "cider-eval" "Menu for CIDER's pretty-printing eval commands." t)
(transient-define-prefix cider-eval-pprint-menu ()
  "Transient menu for CIDER's pretty-printing eval commands.
The print-function argument picks the printer (pr, pprint, fipp, puget,
zprint, or a custom var) for this invocation only."
  ["Argument"
   ("-p" "Print function" "--print-fn=" :reader cider-eval-pprint-menu--read-print-fn)]
  [["Pretty-print"
    ("e" "Form" cider-eval-pprint-menu--form)
    ("d" "Defun" cider-eval-pprint-menu--defun)]
   ["Send pretty-printed value to"
    ("c" "Comment (form)" cider-eval-pprint-menu--form-to-comment)
    ("D" "Comment (defun)" cider-eval-pprint-menu--defun-to-comment)
    ("r" "REPL (form)" cider-eval-pprint-menu--form-to-repl)]]
  [:hide (lambda () t)
   ("C-e" "Form" cider-eval-pprint-menu--form)
   ("C-d" "Defun" cider-eval-pprint-menu--defun)])