cursive

Issues at: https://git.io/cursive-issues
jdhollis 2020-08-10T00:51:14.130400Z

No worries. Happy to help! Took a couple of hours, but hopefully that’ll save everyone else.

jdhollis 2020-08-10T00:51:33.130600Z

(And took so long mostly because I’m on an abysmally slow internet connection at the moment.)

cfleming 2020-08-10T00:57:40.130900Z

https://twitter.com/CursiveIDE/status/1292623354105495557?s=20

1❤️
cfleming 2020-08-10T01:04:58.131100Z

The workaround for this is out now in 1.9.4-eap2.

jaime 2020-08-10T21:22:12.136400Z

I'm trying to follow the answer (below link) to require namespaces in the repl using cursive Tools→REPL→Load file in REPL However after loading the file, I'm expecting that the namespaces required in that file will be loaded, but they are not. I'm still getting No such namespace error. Is it expected behaviour? https://stackoverflow.com/a/27682091/1730988

jaime 2020-08-11T18:17:21.148400Z

I've tried it on two namespace. The src/limeray/api/util.clj has only this content

(ns limeray.api.util
  (:require [tick.core :as t]))

(t/new-date) ;; I'm trying to send this to repl after loading this ns

(defn uuid
  ([]
   (java.util.UUID/randomUUID))
  ([uuid-string]
   (java.util.UUID/fromString uuid-string)))

jaime 2020-08-11T18:20:03.148900Z

jaime 2020-08-11T18:25:29.150500Z

Hmm after playing with it, I guess I'm doing silly mistake. My repl should be in the same namespace of the file in order for the symbols to be available 😅