cursive

Issues at: https://git.io/cursive-issues
conan 2021-05-05T15:44:22.304600Z

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.

conan 2021-05-05T15:45:25.304700Z

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.

conan 2021-05-05T15:53:25.304900Z

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

acim1 2021-05-05T21:29:39.306400Z

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?

imre 2021-05-05T21:34:47.306500Z

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

imre 2021-05-05T21:34:52.306700Z

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

imre 2021-05-05T21:35:17.306900Z

and for the current repl ns

imre 2021-05-05T21:35:22.307100Z

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

imre 2021-05-05T21:35:31.307300Z

at least these are what I use

acim1 2021-05-05T21:35:45.307500Z

Ah, I see. Thanks!

imre 2021-05-05T21:37:41.307700Z

It would be extremely awesome to have full integration though

➕ 1