This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-02-25
Channels
- # announcements (5)
- # beginners (74)
- # boot (5)
- # cider (57)
- # cljdoc (5)
- # cljs-dev (45)
- # clojure (37)
- # clojure-dev (6)
- # clojure-europe (4)
- # clojure-italy (17)
- # clojure-nl (11)
- # clojure-spec (48)
- # clojure-uk (96)
- # clojurescript (79)
- # cursive (17)
- # data-science (1)
- # datomic (27)
- # emacs (2)
- # fulcro (22)
- # immutant (1)
- # java (62)
- # juxt (4)
- # kaocha (4)
- # lein-figwheel (5)
- # leiningen (6)
- # midje (1)
- # mount (1)
- # music (3)
- # nrepl (6)
- # off-topic (49)
- # pathom (10)
- # pedestal (2)
- # re-frame (43)
- # reagent (2)
- # ring (2)
- # shadow-cljs (78)
- # spacemacs (6)
- # test-check (2)
- # tools-deps (4)
Is there any way to have preloads in Cursive REPL? E.g. I would like to always have (require 'dev) (in-ns 'dev)
being executed when a particular REPL starts.
IIRC REPLs usually start in the user
namespace, but there’s an option to specify which namespace you want loaded
Yeah, I think that maybe I'm using that feature wrong because it says that dev
ns does not exist. I'll try to just load dev
in user
, thanks.
the default namespace file must be on the path
(java classpath)
er, yes
are you using lein?
has anyone figured out how to rename a file.clj to file.cljc with intellij rename ?? intellij does not show file extension when renaming so I have been stumped on this one for a while. Rubymine does show the file extension, so maybe with java based lang they don't bother to show it?
oh .. trying
man, that was easy .. thanks 🙂
fun question #2 >> lets say i am running shadow-cljs server on the command line, the i go to cursive and start a remote repl on port 9000 and i start that sucker. then i go to the repl, load a file that i want to tests ( blah.cljs ) and that kinda works. but how can I run the tests in that file ( like i can with clojure repl ) if i try and run the test ( cursive command to run all tests in file ) i get >>> No application has connected to the REPL server. Make sure your JS environment has loaded your compiled ClojureScript code. <<<