This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-11-18
Channels
- # aleph (4)
- # announcements (2)
- # babashka (48)
- # beginners (59)
- # calva (5)
- # cider (14)
- # clj-kondo (4)
- # cljs-dev (3)
- # clojure (77)
- # clojure-europe (6)
- # clojure-italy (6)
- # clojure-nl (5)
- # clojure-spec (4)
- # clojure-uk (67)
- # clojurescript (19)
- # clr (3)
- # cursive (7)
- # datomic (36)
- # duct (33)
- # events (3)
- # figwheel (1)
- # fulcro (4)
- # funcool (2)
- # graalvm (3)
- # jobs (1)
- # joker (25)
- # kaocha (1)
- # leiningen (45)
- # malli (17)
- # off-topic (103)
- # quil (1)
- # re-frame (16)
- # reitit (1)
- # rewrite-clj (27)
- # shadow-cljs (39)
- # spacemacs (3)
- # sql (11)
- # tools-deps (14)
- # vim (41)
fwiw, i asked Olical whether conjure uses the tap> portion of prepl and iiuc, he said something like "not really".
LOL, that's kinda vague! Maybe implementing the rest of prepl is easy enough (as a mod to Joker itself, if not as Joker code) to test out whether it'd be useful without tap>
.
From what little research I've done, it seems like tap>
would require a fairly major change (if not redesign to Joker), because it basically requires being able to run arbitrary Joker code on different threads (i.e. Joker would need to support multithreading in some fashion).
So, is it worth (someone) implementing a pRepl for Joker without Joker also supporting tap>
?
i got the sense from Olical that conjure would work fine without the tap> support in prepl - so it's the cost of prepl implementation and maintenace traded for users being able to use conjure i guess. on a side note, prepl is still alpha iiuc.
What does prepl make use of tap> for? Tap> is a core fn now. So it's more a question of should joker support tap> from core no?
whatever you tap> will show up on the prepl in an "unsolicited" manner -- it just suddenly shows up
in the context of rebl, whatever you tap> will show up in the tap tab, after tap>ing multiple times, you can click "browse" and all of the accumulated tap> content is then made available for inspection in the main rebl ui
not quite sure what you are referring to, but for rebl to work, iiuc, it must be in the same process that a clj project is running in -- at least at the moment. i think there is some thought being given to things working over the wire (e.g. punk), but these things are even more early stage iiuc.
(i did succeed in converting emacs-lisp data structures to analogous clojure data structures and sending to rebl as well as punk though)
It seems it also has this tap> feature, but logically it seems it could still function without it
Unless a prepl client was relying on tap> to print info to the repl. Like say the client when you eval something did a tap> or if an exception was thrown it did a tap> to display it, etc.