This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-04-01
Channels
- # announcements (14)
- # beginners (6)
- # biff (6)
- # calva (3)
- # cider (7)
- # clojure (79)
- # clojure-europe (5)
- # clojure-norway (9)
- # cursive (9)
- # data-science (20)
- # datomic (3)
- # fulcro (9)
- # graalvm (15)
- # integrant (2)
- # introduce-yourself (2)
- # jobs (1)
- # lsp (7)
- # malli (5)
- # off-topic (130)
- # parinfer (11)
- # pedestal (11)
- # portal (1)
- # practicalli (4)
- # releases (3)
- # remote-jobs (1)
- # ring (8)
- # ring-swagger (30)
- # shadow-cljs (9)
- # sql (10)
- # tools-deps (8)
Dear Calva-friends: https://github.com/BetterThanTomorrow/calva/releases/tag/v2.0.433
• https://github.com/BetterThanTomorrow/calva/issues/2448. Enable calva.paredit.multicursor
in your settings to try it out. Closes https://github.com/BetterThanTomorrow/calva/issues/2473
• https://github.com/BetterThanTomorrow/calva/issues/2483
• https://github.com/BetterThanTomorrow/calva/issues/2476. Enable calva.paredit.multicursor
in your settings to try it out. Closes https://github.com/BetterThanTomorrow/calva/issues/2476
Need debugger help in calva. I keep getting this popup "You don't have an extension for debugging Clojure". How to fix this? VSCode Version: 1.87.2 Commit: 863d2581ecda6849923a2118d93a088b0745d9d6 Date: 2024-03-08T15:20:17.278Z Electron: 27.3.2 ElectronBuildId: 26836302 Chromium: 118.0.5993.159 Node.js: 18.17.1 V8: 11.8.172.18-electron.0 OS: Windows_NT x64 10.0.19045 Calva - [2.0.433] - 2024-04-01
With Calva you do not start a debug session. Rather the REPL is sort of a debug session and will stop at breakpoints. Further you do not place breakpoints with the VS Code tooling for it. Instead you place #break
or #dbg
reader tags in the code and then evaluate form. The difference between #break
and #dbg
is that the former will place one breakpoint, and the second one will instrument the form with breakpoints.
There is also the command: Calva Debug: Instrument Current Top Level Form for Debugging. This will instrument the top level form like the #dbg
tag, but without you having to edit it.
See: https://calva.io/debugger/ for the debugger docs, and about the limitations.