This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-10-09
Channels
- # announcements (2)
- # babashka (11)
- # beginners (9)
- # biff (7)
- # calva (20)
- # catalyst (1)
- # cider (8)
- # clerk (46)
- # clj-kondo (18)
- # clj-otel (2)
- # clojure-brasil (22)
- # clojure-europe (18)
- # clojure-gamedev (23)
- # clojure-italy (5)
- # clojure-nl (2)
- # clojure-norway (14)
- # clojure-uk (6)
- # clr (1)
- # datomic (13)
- # emacs (1)
- # hoplon (13)
- # hyperfiddle (53)
- # introduce-yourself (1)
- # java (23)
- # malli (7)
- # obb (35)
- # off-topic (31)
- # polylith (2)
- # portal (9)
- # rdf (15)
- # reitit (12)
- # releases (3)
- # ring (4)
- # shadow-cljs (6)
- # solo-full-stack (3)
Why a game editor when you have Portal and Clerk already lol (using Portal in this case as the de facto edit mode visualizer) https://clojurians.slack.com/archives/C066UV2MV/p1696817214900019
BTW I was gonna add some metadata for the pprint viewer around print-length and print-level. Is this something you feel like you've been missing?
Yeah, it would be good to have some of it, but not a priority as we can mix and match viewers… and create one ourselves pretty easily. But it hasn’t been an issue so far
Thanks for asking ☺️
I'm not sure if I just noticed this or if something changed recently, but I see my repl output twice for each evaled form: Why does this happen.. and how can I make it only show once to reduce scrolling in the window?
FWIW I use this middleware [refactor-nrepl.middleware/wrap-refactor,cider.nrepl/cider-middleware,portal.nrepl/wrap-portal]
and this in my user.clj
(inspect/open {:theme :portal.colors/gruvbox})
(add-tap portal.api/submit)
The https://github.com/djblue/portal/blob/master/src/portal/nrepl.clj#L89 middleware will only tap> the value once. You may have another tap handler registered elsewhere.