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

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

Signature

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

Documentation

Return non-nil if COMMAND is PowerShell.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-jack-in.el
(defun cider--jack-in-cmd-powershell-p (command)
  "Return non-nil if COMMAND is PowerShell."
  (or (string-equal command "powershell")
      (string-equal command "pwsh")))