FYI - https://metaredux.com/posts/2019/06/21/nrepl-0-7-introducing-a-native-edn-transport.html
hello
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 foreveralso happens with nrepl 0.6.0
(the result never gets printed)
@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.
ok, thanks, good to know 🙂