This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-04-06
Channels
- # announcements (14)
- # babashka (14)
- # beginners (22)
- # calva (56)
- # cider (20)
- # clerk (8)
- # clj-commons (10)
- # clj-kondo (18)
- # cljs-dev (11)
- # clojure (87)
- # clojure-conj (3)
- # clojure-europe (29)
- # clojure-nl (1)
- # clojure-poland (5)
- # clojure-portugal (1)
- # clojurescript (100)
- # data-science (3)
- # datahike (1)
- # datomic (13)
- # events (2)
- # fulcro (10)
- # funcool (2)
- # helix (19)
- # hoplon (6)
- # humbleui (2)
- # hyperfiddle (40)
- # leiningen (5)
- # lsp (22)
- # malli (26)
- # nrepl (2)
- # off-topic (19)
- # reagent (32)
- # releases (1)
- # shadow-cljs (266)
- # spacemacs (6)
- # tools-build (9)
- # vim (1)
hey all, when connecting over nrepl, what (if anything) sets the auto-referred vars in the user namespace? For comparison, clojure.main repl uses https://github.com/clojure/clojure/blob/master/src/clj/clojure/main.clj#L355-L359to define what happens. It seems like the nrepl repl does not do that. Could it? If not, where would a user configure such a thing? I assume in :repl-options somehow.
👀 4
(the reason I am asking is that add-lib support is coming shortly, and while we've automatically refer'ed some new vars in clojure.main, nrepl servers don't get the benefit of that automatically, so you need to at least use
the ns before you can use it)