Variable: cider-clojure-cli-powershell-options

cider-clojure-cli-powershell-options is a customizable variable defined in cider-jack-in.el.

Value

nil

Documentation

PowerShell options inserted before the encoded jack-in command on Windows.

When CIDER jacks in via PowerShell (see cider-clojure-cli-command), this string is passed to the PowerShell executable ahead of its
-encodedCommand argument. For example, "-noprofile -executionpolicy
bypass" avoids loading the user profile and works around a restrictive execution policy.

This variable was added, or its default value changed, in cider version 2.0.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260821.817/cider-jack-in.el
(defcustom cider-clojure-cli-powershell-options
  nil
  "PowerShell options inserted before the encoded jack-in command on Windows.
When CIDER jacks in via PowerShell (see `cider-clojure-cli-command'), this
string is passed to the PowerShell executable ahead of its
`-encodedCommand' argument.  For example, \"-noprofile -executionpolicy
bypass\" avoids loading the user profile and works around a restrictive
execution policy."
  :type '(choice (const :tag "None" nil)
                 (string :tag "Options"))
  :group 'cider
  :safe (lambda (s) (or (null s) (stringp s)))
  :package-version '(cider . "2.0.0"))