Variable: cider-jack-in-lein-plugins

cider-jack-in-lein-plugins is a variable defined in cider.el.

Value

nil

Documentation

List of Leiningen plugins to be injected at jack-in.

Each element is a list of artifact name and version, followed optionally by keyword arguments. The only keyword argument currently accepted is
:predicate, which should be given a function that takes the list (name,
version, and keyword arguments) and returns non-nil to indicate that the plugin should actually be injected. (This is useful primarily for packages that extend CIDER, not for users. For example, a refactoring package might want to inject some middleware only when within a project context.)

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defvar cider-jack-in-lein-plugins nil
  "List of Leiningen plugins to be injected at jack-in.
Each element is a list of artifact name and version, followed optionally by
keyword arguments.  The only keyword argument currently accepted is
`:predicate', which should be given a function that takes the list (name,
version, and keyword arguments) and returns non-nil to indicate that the
plugin should actually be injected.  (This is useful primarily for packages
that extend CIDER, not for users.  For example, a refactoring package might
want to inject some middleware only when within a project context.)")