Fork me on GitHub
#cider
<
2016-02-05
>
curtosis02:02:14

I created a cider task in my profile.boot (basically, copied the wiki "better method") and set my cider-boot-parameters to cider repl -s wait.

curtosis02:02:54

what's weird is, when I first installed cider it pulled 0.11.0-SNAPSHOT, and it complained about being out of sync with 0.10.2. I uninstalled cider, pinned it to melpa-stable and re-installed. FWIW, I don't get the complaint when running with lein.

malabarba10:02:53

Hm, it's probably some small detail in your boot config, but my boot knowledge is nil

malabarba10:02:23

If no one else replies here, just open a new issue with full details of your configs and the messages you get. Someone will surely see it there.

benedek11:02:51

@curtosis you can do the whole thing from the command line actually, see https://github.com/clojure-emacs/cider/issues/1531 for details

benedek12:02:26

so this: [boot] -d cider/cider-nrepl:0.10.2 -d org.clojure/tools.nrepl:0.2.12 repl -m cider.nrepl/cider-middleware -s wait might just do the trick without the task

benedek12:02:39

and plan is that cider would do this for you

curtosis15:02:55

that actually pointed me to the problem -- somehow I'd missed adding cider-middleware, which would make sense of the weird symptom (could tell when the versions were out of sync, but couldn't tell when they were in sync). Added in middleware, and everything starts up all nice and quietly. Thanks!