Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-19 Thread Mike Rodriguez
@Val Waeselynck I upgraded to 0.1.3 and it seems to be working without the issue #1 workaround anymore. I read the documentation that you referenced as well. It is useful and helps clarify what sort of situations can come up. Thanks! On Thursday, October 19, 2017 at 8:19:43 AM UTC-4, Val Waesel

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-19 Thread Val Waeselynck
@Mike Rodriguez the 0.1.3 release improves ClojureScript support and should solve the mentioned issue, along with much better documentation regarding ClojureScript support. Please tell me

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-14 Thread Mike Rodriguez
I really like this library already. I only had to give it about 5 minutes of time to immediately see how it simplified quick REPL-driven debugging workflows for me. The only outstanding issue that is an annoyance for me is the CLJS support, which is discussed at https://github.com/alvalval

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-09 Thread Val Waeselynck
Le 9 oct. 2017 18:17, "Didier" a écrit : What happens with loops? Say if you spy inside a for? It records and logs new information on each iteration :) see `disable!` and/or `brk` if that's inconvenient. -- You received this message because you are subscribed to the Google Groups "Clojure" gro

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-09 Thread Didier
What happens with loops? Say if you spy inside a for? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first pos

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-09 Thread Val Waeselynck
Thanks Stu! Yes that is one of the options the library provides, though not the one I use most. Le 9 oct. 2017 13:44, "Stuart Halloway" a écrit : > Very cool, Val! > > It should be possible to recreate the original scope as a let (instead of > defs) so you don't have to worry about the names clu

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-09 Thread Stuart Halloway
Very cool, Val! It should be possible to recreate the original scope as a let (instead of defs) so you don't have to worry about the names cluttering up your namespace. Cheers, Stu On Sun, Oct 8, 2017 at 10:17 PM, Jiacai Liu wrote: > Wow, what a good idea. Thanks for sharing. > > On Mon, Oct 9

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-08 Thread Jiacai Liu
Wow, what a good idea. Thanks for sharing. On Mon, Oct 9, 2017 at 7:05 AM, Mike <145...@gmail.com> wrote: > Cool! Thanks, Val! > > воскресенье, 8 октября 2017 г., 10:09:19 UTC+3 пользователь Val Waeselynck > написал: > >> Hi, I'm happy to release a tiny Clojure/Script library called >> scope-capt

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-08 Thread Mike
Cool! Thanks, Val! воскресенье, 8 октября 2017 г., 10:09:19 UTC+3 пользователь Val Waeselynck написал: > > Hi, I'm happy to release a tiny Clojure/Script library called > scope-capture . > > https://github.com/alvalval/scope-capture > > Loosely

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-08 Thread Paulus Esterhazy
This looks great, thanks for publishing this, Val! On Sun, Oct 8, 2017 at 9:09 AM, Val Waeselynck wrote: > Hi, I'm happy to release a tiny Clojure/Script library called scope-capture. > > https://github.com/alvalval/scope-capture > > Loosely speaking, scope-capture makes it trivial to reprodu