This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-03-09
Channels
- # alda (5)
- # aleph (10)
- # bangalore-clj (1)
- # beginners (168)
- # cider (68)
- # cljs-dev (263)
- # clojars (4)
- # clojure (66)
- # clojure-brasil (25)
- # clojure-china (1)
- # clojure-dusseldorf (1)
- # clojure-greece (4)
- # clojure-italy (3)
- # clojure-russia (4)
- # clojure-spec (12)
- # clojure-uk (16)
- # clojurescript (36)
- # community-development (12)
- # cursive (9)
- # data-science (1)
- # datascript (8)
- # datomic (20)
- # defnpodcast (6)
- # emacs (2)
- # figwheel (2)
- # fulcro (51)
- # graphql (62)
- # immutant (14)
- # keyboards (1)
- # lein-figwheel (10)
- # leiningen (5)
- # lumo (15)
- # off-topic (4)
- # onyx (3)
- # pedestal (4)
- # portkey (13)
- # protorepl (1)
- # re-frame (8)
- # reagent (2)
- # reitit (4)
- # shadow-cljs (71)
- # spacemacs (7)
- # specter (33)
- # sql (9)
- # unrepl (75)
- # vim (7)
@mfikes Thanks so much for talking with me a couple of days ago — and helping me get tubular running so I could run a Planck REPL. Super cool! I can type in the REPL window, but everytime I send a form to the REPL, I get a namespace error.. What do I type in the REPL to get in the correct namespace? Thx again!
( @mfikes — sorry I couldn’t upload screenshot here.. getting the “your storage space exceeded” error from Slack. :)
@genekim In Cursive, I usually do Tools > REPL > Switch REPL NS to Current File. This should issue an in-ns
command, that you could also type directly into the REPL. It is also important to load the namespace that you want to work in either using Cursive’s Tools > REPL > Load File in REPL. This will issue a load-file
, but you can invoke require
directly in the REPL.
When I write Clojure, I often have several namespaces (particularly if following the functional core/imperative shell pattern). I know Cursive can do "run tests in current NS in repl", but can it do "Run all tests in module in REPL"?