This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-12-31
Channels
- # adventofcode (4)
- # ai (1)
- # announcements (13)
- # babashka (1)
- # beginners (42)
- # calva (15)
- # chlorine-clover (28)
- # cider (7)
- # cljsrn (1)
- # clojure (3)
- # clojure-china (1)
- # clojure-dev (4)
- # clojure-europe (7)
- # clojure-losangeles (1)
- # clojure-nl (3)
- # clojure-nlp (2)
- # clojure-sweden (12)
- # clojure-uk (2)
- # clojurescript (30)
- # code-reviews (36)
- # core-async (5)
- # cursive (10)
- # data-science (1)
- # datalevin (1)
- # fulcro (11)
- # introduce-yourself (1)
- # lsp (10)
- # malli (7)
- # minecraft (24)
- # missionary (10)
- # monads (6)
- # nrepl (4)
- # off-topic (11)
- # portal (4)
- # rdf (1)
- # reagent (3)
- # releases (4)
- # shadow-cljs (4)
- # spacemacs (4)
Hi guys, anyone know what package/how these (eval outputs) are shown?
Asking because I'm writing something like CIDER but for JS
I've tried to wrap my head around cider's code (mainly cider-eval.el
) but a bit too much to grasp quickly
I think that's cider-emit-into-popup-buffer
doing it
btw, in case it helps, I used elisp jump to definition recursively to track it down
Ah cool thanks, I'll have a look. And yea I did, just hard to know where to start (when looking through an unfamiliar codebase)
@UR37CBF8D It's not a separate package - see cider-overlays.el
.
At some point I toyed with the idea to make this more generic and reusable, but I never got to doing so.
A while ago someone adapted the code from CIDER for Emacs Lisp https://github.com/xiongtx/eros
Ah sweet. Thanks, I might try to make it generic/reusable, if I can!