This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-12-13
Channels
- # adventofcode (84)
- # aleph (1)
- # announcements (2)
- # aws (27)
- # beginners (52)
- # braveandtrue (2)
- # calva (440)
- # cider (7)
- # clara (2)
- # cljdoc (26)
- # cljs-dev (70)
- # clojure (131)
- # clojure-berlin (4)
- # clojure-brasil (1)
- # clojure-europe (2)
- # clojure-greece (4)
- # clojure-hamburg (1)
- # clojure-italy (4)
- # clojure-losangeles (6)
- # clojure-nl (14)
- # clojure-spec (7)
- # clojure-uk (25)
- # clojurescript (26)
- # component (2)
- # cursive (13)
- # datomic (60)
- # dirac (59)
- # docker (1)
- # figwheel (1)
- # figwheel-main (2)
- # fulcro (12)
- # graphql (5)
- # juxt (33)
- # leiningen (19)
- # nrepl (1)
- # off-topic (37)
- # protorepl (2)
- # re-frame (18)
- # reagent (46)
- # remote-jobs (1)
- # ring-swagger (1)
- # shadow-cljs (88)
- # sql (10)
- # tools-deps (64)
- # vim (24)
@bozhidar: Thanks for your recent reply to my github issue.
As an aside will this:
https://github.com/RickMoynihan/nrebl.middleware/blob/6f8f410f2e50b50ee1b554317fda1fdd825c7a75/src/nrebl/middleware.clj#L37-L40
always guarantee that my response middleware occurs after eval
and before pr-values
? It feels like I need to also specify pr-values
in there (presumably as a :requires
in order to force mine to always be between those two.
Yeah, you have to be a bit more specific in the descriptor to make sure the middleware gets inserted properly in the final vector.
Cool. Will give that a try. Is there an easy way to inspect the order of the final middlewares?
I just filed an issue to yagni https://github.com/venantius/yagni/issues/45 but there might be a chance that it's a cider-nrepl issue maybe?
Can the result of cider-interactive-eval
be made to be sent to repl? If I get an error it is currently sent to the *Messages*
buffer
try using the cider-insert-*
style commands. they will do what the interactive ones do but put it in the repl instead. There's a map at C-c C-j [key]
where k is d
efun, e
xpression, and r
egion
Thanks! In my case (cider-insert-in-repl "(do (ns user) (reset))" 't)
did the trick.