Fork me on GitHub
#nrepl
<
2019-06-21
>
stathissideris13:06:33

I tried:

» clj -Sdeps '{:deps {nrepl {:mvn/version "0.7.0-alpha1"}}}'
Clojure 1.10.0
user=> (require '[nrepl.server :refer [start-server stop-server]])
nil
user=> (defonce server (start-server :bind "localhost" :port 4001))
and then from emacs (with Cider 0.21.0): M-x cider-jack-in When typing (+ 1 1) in the resulting REPL I get: error in process filter: 'nil' requires the nREPL op "classpath" (provided by cider-nrepl) and the resulting “ticker” running forever

stathissideris13:06:47

also happens with nrepl 0.6.0

stathissideris13:06:02

(the result never gets printed)

bozhidar13:06:51

@stathissideris I think this was a bug that’s fixed on the current master of CIDER. Basically it didn’t work without cider-nrepl without that fix.

stathissideris13:06:09

ok, thanks, good to know 🙂