Fork me on GitHub
#cider
<
2016-01-25
>
tord11:01:27

The Cider REPL works fine for me when I fire it up with cider-jack-in, but when I use cider-connect to connect to a running nrepl server, I get:

tord11:01:47

What am I doing wrong?

bozhidar12:01:01

you’re connecting to an nREPL without the proper middleware

bozhidar12:01:09

I’m guess you’ve embedded nREPL into some app

bozhidar12:01:17

but didn’t add our middleware there

niquola14:01:52

Hi all, does cider switch nrepls automatically for clj/cljs projects based on file extension?

benedek14:01:02

it does figure out the right repl when you eval stuff if that is what you mean

tord17:01:32

@bozhidar: Yes, following the instructions in the "Via embedding the nREPL in your app" section of the cider-nrepl Readme file did the trick. Thanks!