Function: cider--jack-in-cmd-powershell-p

cider--jack-in-cmd-powershell-p is a byte-compiled function defined in cider.el.

Signature

(cider--jack-in-cmd-powershell-p COMMAND)

Documentation

Returns whether COMMAND is PowerShell.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider--jack-in-cmd-powershell-p (command)
  "Returns whether COMMAND is PowerShell."
  (or (string-equal command "powershell")
      (string-equal command "pwsh")))