Fork me on GitHub
#cider
<
2018-08-13
>
bozhidar09:08:41

Well, it is what it is. I’m happy with being amused, but I definitely think we can do a bit better down the road. 😄

cjsauer14:08:41

@bozhidar really do appreciate the help and your support of CIDER et al I did successfully get my environment back up and running this morning by customizing the clojure command a bit:

clojure -Sdeps '{:deps {nrepl {:mvn/version "0.4.4"} com.billpiel/sayid {:mvn/version "0.0.16"} refactor-nrepl {:mvn/version "2.4.0-SNAPSHOT"} cider/cider-nrepl {:mvn/version "0.18.0"}}}' -e '(require (quote cider-nrepl.main)) (cider-nrepl.main/init ["refactor-nrepl.middleware/wrap-refactor", "cider.nrepl/cider-middleware"])'
Mainly updating to nrepl 0.4.4 and removing the "com.billpiel.sayid.nrepl-middleware/wrap-sayid" middleware. Is sayid crucial to CIDER's operations? I still seem to be able to debug code strangely enough.

dpsutton14:08:10

Sayid is a separate stand alone tracing library

dpsutton14:08:18

Not related to cider at all

cjsauer14:08:22

Gotcha. Reading up on it now, seems like a really interesting tool. Once PR #40 is merged I think I'll try it out (https://github.com/bpiel/sayid/pull/40)

bozhidar15:08:29

@bhauman The piggieback auto-injection problem was just fixed on master.

🎉 8
bhauman15:08:03

fantastic!!!

bhauman15:08:53

now I can start writing the editor integration docs for figwheel.main

Mario C.18:08:23

When I try to start CIDER it errors out but I don't really get to view the stack trace. The moment I click on any key the buffer/window goes away. Is there anyway to keep it up?

Mario C.18:08:11

The error I can see is java.io.FileNotFoundException: Could not locate ring/server/standalone__init.class or ring/server/standalone.clj on classpath.

Mario C.18:08:24

Subprocess failed

Mario C.18:08:58

When I would run the repl in Cursive it would give me those errors as well but for some reason would go ahead and start a working repl anyways.

Mario C.18:08:21

I had set the Cursive configuration for the repl to 1. Run nREPL with Leiningen 2. Profiles: clj,dev,repl

bozhidar19:08:02

Seems like you’ve got some missing dependency or something like that.

Mario C.20:08:26

Is profiles.clj required in the .lein directory?

dpsutton20:08:51

purely optional

dpsutton20:08:09

also you can check the *Messages* buffer to see that message that appeared in the minibuffer

dorab20:08:43

C-x b is switch-buffer in an unmodified emacs. In other words, control-x and then b. Then *Messages* to specify which buffer you want to switch to.

richiardiandrea23:08:20

has cider-nrepl 0.19.0-SNAPSHOT been pushed with the new cljs-tooling by any chance?