This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-29
Channels
- # announcements (1)
- # babashka (83)
- # beginners (67)
- # chlorine-clover (22)
- # cider (11)
- # circleci (6)
- # clj-kondo (12)
- # cljs-dev (137)
- # cljsrn (15)
- # clojure (124)
- # clojure-europe (40)
- # clojure-italy (1)
- # clojure-nl (3)
- # clojure-norway (1)
- # clojure-serbia (3)
- # clojure-spec (19)
- # clojure-uk (14)
- # clojuredesign-podcast (5)
- # clojurescript (80)
- # conjure (49)
- # core-async (62)
- # cursive (18)
- # datascript (1)
- # datomic (64)
- # docker (28)
- # emacs (20)
- # figwheel-main (249)
- # fulcro (95)
- # graalvm (2)
- # jobs-discuss (11)
- # joker (2)
- # juxt (4)
- # lambdaisland (9)
- # leiningen (1)
- # meander (14)
- # mount (6)
- # off-topic (16)
- # pathom (46)
- # re-frame (35)
- # reagent (6)
- # reitit (5)
- # shadow-cljs (28)
- # spacemacs (6)
- # sql (18)
- # tools-deps (26)
- # vim (8)
- # xtdb (23)
- # yada (1)
For anyone following along, I was able to get hybrid mode to be sufficient. It was actually the .projectile ignores that I struggled to get working (rather than gitignore as mentioned above). Turns out that projectile (weirdly, against standard UNIX convention) wants paths to begin with “/“. So the following works:
-/node_modules/
(In the UNIX world, the former would refer to a top level path from the filesystem root itself, not a subdirectory of the current dir).
@johanatan You can also use .gitignore
file instead.
@admin055 you’re a bit out of the loop here. These files can’t be git ignored hence the whole dilemma 😀
In short, because our company’s artifactory sucks, we have node_modules not git ignored
@johanatan It’s best to keep this discussion in the tickets, so we won’t lose it.
Is there a function to connect to a repl from whithin another repl?
Something like (connect-to-repl-2)
And then come back to my main repl :my-repl/exit
I think I would need to replace the nrepl middlewares by one that redirrect all communication to the second nREPL server and check for a magic keyword to restore all the middlewares.
So perhaps only doable in the upcoming 0.8.0?