Fork me on GitHub
#cider
<
2020-03-13
>
jmckitrick00:03:51

Here’s a question… I’m using CIDER to connect to an older project running the older figwheel. It starts up, seems to work fine, but then in the minibuffer, I see a prompt Stdin: that never seems to go away.

jmckitrick00:03:00

It seems to echo the input into the REPL prompt.

dpsutton01:03:59

That’s the cljs repl behavior without figwheel. It’s asking for standard in (the R in REPL) without middleware of piggieback

eval-on-point12:03:57

What is the procedure for making Cider aware of the javadoc for a non-standard java library? cider-javadoc works out of the box for things like java.util.Date , but not for libraries that I have imported from Maven

dominicm13:03:14

You need to add the javadoc artifact to your classpath

eval-on-point13:03:13

thanks, that helps!