Fork me on GitHub
#cursive
<
2017-03-17
>
cfleming01:03:28

@wildermuthn Yes, it will be configurable to any namespace once it’s stabilised.

bfabry17:03:42

I seem to have lost more clojure.core functions and anything defined in my user.clj from repl autocompletion/recognition since 1.5.0-eap

genec17:03:45

any idea why when I type a simple expression in the repl, it works fine, but if I try highlighting and running it from the editor it fails? (reduce + [1 2 3]) => 6 (reduce + [1 2 3 4 5]) CompilerException java.lang.RuntimeException: Unable to resolve symbol: reduce in this context, compiling:(C:/github/clojure/reactor/src/reactor/utils.clj:6:1)

rauh18:03:05

@genec Eval the (ns ..) form at the top of your file

rauh18:03:48

See:

(in-ns 'nonexisting-namespace)
(inc 0)
=> Unable to resole namespace error....

a2_himmel22:03:31

after an intellij update i can't type in the REPL input windowpane any more--the tooltip says "This window is read-only". Any ideas?

shaun-mahood22:03:36

@a2_himmel: What version of IntelliJ and Cursive are you on now?

a2_himmel22:03:58

@shaun-mahood Intellij Community Version: 2016.3.5 Build: <tel:163.13906.18|163.13906.18> Released: March 6, 2017

a2_himmel22:03:30

@shaun-mahood Cursive Version: 1.4.3-2016.3

shaun-mahood22:03:30

@a2_himmel: I'm on the same versions of both (running Windows 10) and I haven't run into that. You could try creating another REPL config, or re-importing the project (assuming that's not super painful) to see if that fixes it.

a2_himmel22:03:58

@shaun-mahood thanks shaun, that worked! have a good weekend