This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-10-21
Channels
- # 100-days-of-code (5)
- # announcements (6)
- # beginners (92)
- # cider (39)
- # cljdoc (35)
- # cljsrn (1)
- # clojure (187)
- # clojure-sanfrancisco (2)
- # clojure-spec (26)
- # clojure-sweden (2)
- # clojure-uk (1)
- # clojurescript (27)
- # cursive (19)
- # datascript (3)
- # datomic (19)
- # defnpodcast (1)
- # emacs (11)
- # fulcro (71)
- # incanter (1)
- # lein-figwheel (4)
- # lumo (10)
- # off-topic (19)
- # planck (5)
- # reagent (49)
- # reitit (2)
- # shadow-cljs (25)
- # spacemacs (1)
- # sql (1)
- # unrepl (4)
- # yada (4)
things seem okay if choose "create project from existing sources", but i can't start a repl configuration.
@joshkh I think you need 1.8.0-eap2 for the deps.edn support (https://groups.google.com/forum/#!topic/cursive/32tfBegzfVc/discussion)
have you tried creating a new run configuration off this template using the plus top left?
that did it. thanks, @drowsy. apparently my brain is still stuck in the lein workflow.
@drowsy @joshkh They’ll be there for deps in the next EAP: https://github.com/cursive-ide/cursive/issues/2064
Hey, you know what would be sick to add to that feature? The ability to associate repl command
to a run configuration. I always have to wait for my cljs repl to load before I can run my (do (use 'figwheel-sidecar.repl-api) (start-figwheel!) (cljs-repl))
command
@idiomancy that's how cider works with cljs repls and it is quite nice
@idiomancy Can’t you do that using user.clj
?
well, the trick is, I'm running 2 repls to get clojurescript going. I run the local clojure repl and then I connect to it with a remote repl, at which point I run the figwheel script. So I want it to be run on the remote repl, but not the local repl
@idiomancy Thanks for the use case, I can see how that would help with remote REPLs.