This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-05-19
Channels
- # admin-announcements (1)
- # beginners (26)
- # boot (6)
- # cider (14)
- # cljsjs (29)
- # cljsrn (19)
- # clojure (87)
- # clojure-austin (5)
- # clojure-belgium (10)
- # clojure-brasil (2)
- # clojure-dusseldorf (15)
- # clojure-greece (17)
- # clojure-russia (51)
- # clojure-sanfrancisco (4)
- # clojure-sweden (20)
- # clojure-uk (31)
- # clojurescript (111)
- # core-matrix (2)
- # cursive (9)
- # datascript (15)
- # datomic (41)
- # dirac (1)
- # emacs (8)
- # flambo (1)
- # funcool (4)
- # hoplon (72)
- # lein-figwheel (3)
- # off-topic (2)
- # om (79)
- # om-next (2)
- # onyx (17)
- # other-languages (16)
- # re-frame (62)
- # reagent (26)
- # remote-jobs (1)
- # rum (3)
- # spacemacs (5)
- # untangled (120)
It doesn't let me type during this time. It is just locked up. Cider 0.12.0 with the correspond cider-nrepl middleware etc (no warnings there)
malabarba: I ended up reporting my first issue https://github.com/clojure-emacs/cider/issues/1755 just FYI
haven't posted anything for my current issue with a lock up every time I cider-connect to a running nREPL server. I'll probably do that soon.
Question about the debugger: is it possible to configure locals to show selected items, without too much work? E.g. I have 20+ locals showing up on everything view, but only need to check a few: filtering would be a great speed-up...thx
@roberto thx....but I am trying to #break at a single location inside a loop using 'H command, and which to see only those locals each time, without having to select my way to them everytime. So, once configured to view only those locals I am interested in, A successions of H, l commands should do the trick, or so I hope?
I tried the p command, but it forces me to wade through selecting each local individually every time 😞
that is how I’ve seen most debuggers work. This is more due to the limitations of the Emacs UI
personally, I break out the loop in to a function so I can limit the locals, debug there, and once i’m happy with the outcome, I put it back where it was.