This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-09-08
Channels
- # announcements (40)
- # babashka (14)
- # babashka-sci-dev (7)
- # beginners (50)
- # calva (8)
- # cider (25)
- # clj-kondo (7)
- # cljdoc (8)
- # cljs-dev (14)
- # clojars (6)
- # clojure (56)
- # clojure-australia (1)
- # clojure-berlin (2)
- # clojure-dev (16)
- # clojure-europe (18)
- # clojure-nl (1)
- # clojure-norway (5)
- # clojure-uk (7)
- # clojurescript (100)
- # cursive (57)
- # data-science (2)
- # datomic (6)
- # emacs (11)
- # figwheel (2)
- # fulcro (14)
- # helix (2)
- # hyperfiddle (9)
- # introduce-yourself (1)
- # lsp (20)
- # malli (14)
- # meander (34)
- # minecraft (1)
- # missionary (8)
- # off-topic (37)
- # pedestal (4)
- # polylith (18)
- # portal (3)
- # re-frame (5)
- # ring (33)
- # shadow-cljs (32)
- # spacemacs (6)
- # vim (16)
Is there a way to get every interned keyword in the runtime (for editor autocompletion)? In Clojure, I use this ugly hack:
(let [field (.getDeclaredField clojure.lang.Keyword "table")]
(.setAccessible field true)
(map keyword (.keySet (.get field nil))))
But that won’t work with sci/Babashka.@flowthing Hi. I think we need to this in bb at compile time
There is also an issue about this here: https://github.com/babashka/babashka.nrepl/issues/55
Gotcha. :thumbsup: That won’t help me, unfortunately, but this is something I can live without.
Regarding this: https://clojurians.slack.com/archives/CLX41ASCS/p1662578187052399
I’m wondering whether it would make sense to have sci/copy-ns
copy :file
meta as well. This would let us implement goto definition for copied things.