This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-01-14
Channels
- # announcements (2)
- # aws (1)
- # babashka (18)
- # babashka-sci-dev (103)
- # beginners (165)
- # calva (51)
- # cider (8)
- # circleci (1)
- # clj-kondo (22)
- # clj-on-windows (2)
- # cljdoc (1)
- # cljfx (31)
- # cljs-dev (16)
- # clojure (81)
- # clojure-europe (71)
- # clojure-nl (7)
- # clojure-uk (11)
- # clojurescript (20)
- # code-reviews (26)
- # conjure (1)
- # contributions-welcome (1)
- # core-async (15)
- # cursive (8)
- # datomic (8)
- # defnpodcast (2)
- # eastwood (24)
- # emacs (10)
- # events (1)
- # fulcro (4)
- # funcool (31)
- # graalvm (43)
- # graphql (8)
- # honeysql (9)
- # introduce-yourself (1)
- # jobs (12)
- # kaocha (3)
- # lsp (28)
- # malli (4)
- # meander (4)
- # membrane (7)
- # off-topic (64)
- # other-languages (3)
- # pedestal (1)
- # polylith (31)
- # portal (5)
- # re-frame (4)
- # reitit (1)
- # releases (5)
- # rum (2)
- # schema (2)
- # sci (34)
- # shadow-cljs (21)
- # vscode (1)
Just found out about the debugger. What a marvel CIDER is ❤️
I have a web app running, started from within the CIDER REPL. I have added breakpoints to a part of the backend code, evaluated the buffer, and then invoked the function again indirectly (click front-end button which sends a request to the backend). But CIDER does not break at the breakpoint. Should what I am trying to do be possible? I.e. adding breakpoints to a live app?
@endrebak It should work. There was a bug in older versions that messed up the debugger over http, but we addressed it last year https://github.com/clojure-emacs/cider-nrepl/issues/689
Hi is there a way to display the history of the return values of evaluated forms (like you do with C-c C-c)?
I see there is M-x cider-repl-history but it is empty, mostly likely because I don’t type in the repl window
i think this is what the repl is good for. I always send forms to the repl so i have a history of it
I usually use C-c C-p to print to another window when I know I want to read the output, but sometimes when eval-ing forms I want to take a second look
@dimitar.ouzounoff to navigate through the history of evaluated form results, I suggest using Portal - https://github.com/djblue/portal which can be used as a tap> source and keeps a history of the results sent to portal.
A very simplistic approach is to evaluate results to a comment, cider-eval-defun-to-comment
in the source code buffer and keep all the comments. Each new evaluation adds a comment
The Cider repl history only keeps a the history of forms and not their results.