This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-11-27
Channels
- # beginners (91)
- # cider (1)
- # cljsjs (29)
- # cljsrn (8)
- # clojure (51)
- # clojure-berlin (1)
- # clojure-india (1)
- # clojure-russia (26)
- # clojure-spec (15)
- # clojure-uk (1)
- # clojurebridge (1)
- # clojurescript (240)
- # code-reviews (1)
- # cursive (22)
- # datomic (3)
- # editors (6)
- # emacs (24)
- # figwheel (3)
- # lein-figwheel (57)
- # off-topic (4)
- # om (3)
- # proto-repl (7)
- # protorepl (8)
- # reagent (2)
- # rum (23)
- # slack-help (1)
- # spacemacs (2)
Hi all. Trying to get protorepl working with a reframe project. Would like to enable the auto eval file option, when I do I get a bunch of warnings though. Showing errors on things like enable console print. Any tips?
@jasongilman I can use the forms from the loaded file as well, but I have to require
it or use the fully qualified name
but if I switch to that namespace using (in-ns …)
I can call the functions directly, so I was just wondering if there was a way to load the file and change ns in one go.
I belive Cursive has this functionallity
FYI #protorepl is the main channel
@torbjornvatn: usually you can execute a block of code or a selection in a namespace and it will automatically execute in that ns. You shouldn't have to switch around the current ns of the REPL. Try out the Proto REPL demo project on github. It has things setup like clojure.tools.namespace to automatically load namespaces on start etc.
ok thanks