Function: cider-macroexpand-menu--read-display-ns

cider-macroexpand-menu--read-display-ns is a byte-compiled function defined in cider-macroexpansion.el.

Signature

(cider-macroexpand-menu--read-display-ns PROMPT INITIAL-INPUT HISTORY)

Documentation

Read a namespace-display style for the macroexpand transient.

PROMPT, INITIAL-INPUT and HISTORY are as for completing-read.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-macroexpansion.el
(defun cider-macroexpand-menu--read-display-ns (prompt initial-input history)
  "Read a namespace-display style for the macroexpand transient.
PROMPT, INITIAL-INPUT and HISTORY are as for `completing-read'."
  (completing-read (or prompt "Namespace display: ")
                   '("tidy" "qualified" "none") nil t initial-input history))