Function: cider-macroexpand-1-inplace
cider-macroexpand-1-inplace is an interactive and byte-compiled
function defined in cider-macroexpansion.el.
Signature
(cider-macroexpand-1-inplace &optional PREFIX)
Documentation
Perform inplace `macroexpand-1` on the expression preceding point.
If invoked with a PREFIX argument, use `macroexpand` instead of
`macroexpand-1`.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-macroexpansion.el
(defun cider-macroexpand-1-inplace (&optional prefix)
"Perform inplace \\=`macroexpand-1\\=` on the expression preceding point.
If invoked with a PREFIX argument, use \\=`macroexpand\\=` instead of
\\=`macroexpand-1\\=`."
(interactive "P")
(let ((expander (if prefix "macroexpand" "macroexpand-1")))
(cider-macroexpand-expr-inplace expander)))