vvvvalvalval / scope-capture

Project your Clojure(Script) REPL into the same context as your code when it ran
MIT License
576 stars 14 forks source link

add a new tip/trick for a reader macro shorthand `#spy/cap` #42

Closed blak3mill3r closed 4 years ago

blak3mill3r commented 4 years ago

I personally found this to be a more convenient way to use this (excellent) tool; now I do not need to require the namespace and it's a little bit easier to add #spy/cap before a form than to wrap the form with (sc.api/spy ... )

vvvvalvalval commented 4 years ago

This is excellent, thank you. I only made some small changes in the names.

blak3mill3r commented 4 years ago

My pleasure. Thanks for making this library, I used it to debug something yesterday that was throwing an exception in some deeply nested expression, in a data-dependent way, and really saw its value! It is automating something that I have done countless times... a very well conceived tool.