Variable: cider-clojure-cli-global-aliases

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

Value

nil

Documentation

Global aliases to include when jacking in with the clojure CLI.

This value should be a string of the form ":foo:bar", and will be prepended to the value of cider-clojure-cli-aliases. 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.14.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defcustom cider-clojure-cli-global-aliases
  nil
  "Global aliases to include when jacking in with the clojure CLI.
This value should be a string of the form \":foo:bar\", and
will be prepended to the value of `cider-clojure-cli-aliases'.
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.14"))