Fork me on GitHub
#cursive
<
2021-05-05
>
conan15:05:22

Hi, I'm no longer able to start a REPL for a project on a WSL2 filesystem. All instances of Intellij hang completely! I've tried using several JDKs defined in both Ubuntu and in Windows. What do I need to do to start a REPL? I'm using leiningen and all the latest everything.

conan15:05:25

I've tried closing the project, deleting the .idea directory and all .iml files, removing all JDKs and starting again. I've tried this on both my home and work laptops.

conan15:05:25

This is the log from when I started the IDE to after I clicked start on the REPL run configuration, nothing else

acim121:05:39

I'll drop a line here before going into Kaocha channel, which looks to be pretty sparse/just watched by the maintainer (in case it's a "no duh" thing). Is there way to get Kaocha testing/results integrated in IDE, or is Kaocha something people strictly run on the command line?

imre21:05:47

No full integration afaik, but you can set up repl commands and run it in the repl:

imre21:05:52

(do
  (require 'clojure.spec.alpha 'expound.alpha 'kaocha.repl)
  (binding [clojure.spec.alpha/*explain-out* expound.alpha/printer]
    (kaocha.repl/run-all)))

imre21:05:17

and for the current repl ns

imre21:05:22

(do
  (require 'clojure.spec.alpha 'expound.alpha 'kaocha.repl)
  (binding [clojure.spec.alpha/*explain-out* expound.alpha/printer]
    (kaocha.repl/run)))

imre21:05:31

at least these are what I use

acim121:05:45

Ah, I see. Thanks!

imre21:05:41

It would be extremely awesome to have full integration though

2
cfleming04:05:35

Yes, no full integration yet sorry.