File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -483,9 +483,12 @@ Added to `cider-jack-in-lein-plugins' (which see) when doing
483
483
" Return a normalized list of Leiningen plugins to be injected.
484
484
See `cider-jack-in-lein-plugins' for the format, except that the list
485
485
returned by this function does not include keyword arguments."
486
- (let ((plugins (append cider-jack-in-lein-plugins
487
- `((" mx.cider/enrich-classpath" " 1.8.0" )
488
- (" cider/cider-nrepl" , cider-injected-middleware-version )))))
486
+ (let ((plugins (if cider-enrich-classpath
487
+ (append cider-jack-in-lein-plugins
488
+ `((" cider/cider-nrepl" , cider-injected-middleware-version )
489
+ (" mx.cider/enrich-classpath" " 1.8.0" )))
490
+ (append cider-jack-in-lein-plugins
491
+ `((" cider/cider-nrepl" , cider-injected-middleware-version ))))))
489
492
(thread-last plugins
490
493
(seq-filter
491
494
(lambda (spec )
You can’t perform that action at this time.
0 commit comments