This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-12-05
Channels
- # adventofcode (419)
- # aleph (8)
- # aws (6)
- # beginners (148)
- # boot (9)
- # cider (24)
- # cljs-dev (37)
- # cljsjs (8)
- # clojure (134)
- # clojure-android (6)
- # clojure-brasil (15)
- # clojure-dev (8)
- # clojure-dusseldorf (2)
- # clojure-greece (67)
- # clojure-italy (8)
- # clojure-japan (3)
- # clojure-russia (3)
- # clojure-spec (8)
- # clojure-uk (13)
- # clojurescript (54)
- # clojurex (6)
- # cursive (5)
- # data-science (12)
- # datomic (15)
- # defnpodcast (11)
- # emacs (25)
- # fulcro (95)
- # graphql (3)
- # lein-figwheel (1)
- # leiningen (27)
- # luminus (1)
- # lumo (6)
- # mount (2)
- # off-topic (112)
- # om (3)
- # onyx (24)
- # perun (3)
- # re-frame (20)
- # reagent (1)
- # reitit (2)
- # ring-swagger (13)
- # rum (10)
- # shadow-cljs (45)
- # spacemacs (24)
- # sql (2)
- # unrepl (78)
- # yada (1)
@curlyfry The next release has a fix for the resolution customisation problem you were having. I now allow customising any var to any other - I realised that many of Clojure’s core forms affecting resolution (`alias`, refer
etc) are functions, not macros so now I allow it all.
Hey, should Debug be available for remote REPLs? I tried starting the Cursive REPL via IntelliJ’s “Debug…” but it does not seem to work and does not behave differently than normal run. Also the “Run > Debug” menu item is always greyed out. The documentation only mentions local REPL debug, is it not available for remote REPLs? I found some old Github issues around that which seem to indicate that it should work.
@cfleming Hi Colin, we’re having a problem with IDEA being immediately shut down as soon as we try to debug our ring
server. We’re guessing that it could be a similar issue to https://github.com/cursive-ide/cursive/issues/1230, as we see the same shutdown message in IDEA’s log as soon as we try to start the leiningen process.
Our configuration:
Run/Debug Configuration -> Leininigen -> Arguments: ring server-headless, Use trampoline: checked, Activate tool window: checked
:profiles {:dev {:plugins [[lein-ring "0.9.7"]]
:dependencies [[ring/ring-mock "0.3.0"]]
:test-paths ["test"]}
:api {:ring {:init api.core/init
:handler api.core/app
:port 6003}}
:worker {:ring {:init worker.core/init
:handler worker.core/app
:port 6004}}}
Any ideas on how we could fix this?