Variable: cider-clojure-cli-aliases

cider-clojure-cli-aliases is a customizable variable defined in cider.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.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.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."
  :type 'string
  :safe #'stringp
  :package-version '(cider . "1.1"))