Function: cider--format-cmd
cider--format-cmd is a byte-compiled function defined in cider.el.
Signature
(cider--format-cmd COMMAND-RESOLVED COMMAND CMD-PARAMS)
Documentation
Format COMMAND-RESOLVED or COMMAND followed by CMD-PARAMS.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider--format-cmd (command-resolved command cmd-params)
"Format COMMAND-RESOLVED or COMMAND followed by CMD-PARAMS."
(format "%s %s" command-resolved
(if (cider--jack-in-cmd-powershell-p command)
(cider--powershell-encode-command cmd-params)
cmd-params)))