Variable: cider-clojure-cli-aliases

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

Value

nil

Documentation

A list of aliases to include when using the clojure cli.

Alias names should be of the form ":foo:bar". Leading "-A" "-M" "-T" or "-X" are stripped from aliases then concatenated into the "-M[your-aliases]:cider/nrepl" form.

When nil, CIDER hints at jack-in time that you may want to activate an alias. Set this to :nil-no-warn to keep it unset without the hint.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-jack-in.el
(defcustom cider-clojure-cli-aliases
  nil
  "A list of aliases to include when using the clojure cli.
Alias names should be of the form \":foo:bar\".
Leading \"-A\" \"-M\" \"-T\" or \"-X\" are stripped from aliases
then concatenated into the \"-M[your-aliases]:cider/nrepl\" form.

When nil, CIDER hints at jack-in time that you may want to activate an
alias.  Set this to `:nil-no-warn' to keep it unset without the hint."
  :type '(choice (const :tag "None (hint at jack-in)" nil)
                 (const :tag "None (no hint)" :nil-no-warn)
                 (string :tag "Aliases"))
  :group 'cider
  :safe (lambda (x) (or (null x) (eq x :nil-no-warn) (stringp x)))
  :package-version '(cider . "1.1"))