Fork me on GitHub
#cider
<
2018-02-20
>
bozhidar02:02:14

Ah, I see what you mean. For me that’s not share-nothing, but of course something like this could work.

bozhidar02:02:32

The only small problem with this approach is that it would work just for socket REPLs, it can’t be used in the “classic” comint approach.

pyr12:02:08

I was wondering if there was a gist or wiki in cider that showcases how to attach to a REPL launched with the standard clj tooling

pyr12:02:23

or if that's still something that needs to happen

pyr12:02:13

Ah, I see way up in the backlog that it's a 0.17 matter

dominicm14:02:02

@pyr I have something you can run on the cli

dominicm14:02:53

@pyr clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.17.0-SNAPSHOT"}}}' -e '(require (quote cider-nrepl.main)) (cider-nrepl.main/init ["cider.nrepl/cider-middleware"])'

dominicm14:02:12

@pyr that will start a cider-nrepl you can cider-connect to 🙂

pyr15:02:56

@dominicm that's very nice, thanks!