debug-repl icon indicating copy to clipboard operation
debug-repl copied to clipboard

A Clojure debug repl as nrepl middleware

Results 4 debug-repl issues
Sort by recently updated
recently updated
newest added

It is really inconvenient having to require com.gfredericks.debug-repl in every namespace while you debugging, especially given usually one has debug-repl in their user profile, not in a project definition, so...

As it turns out, debug-repl's `break!` throws NPE when called inside a trampoline REPL.

Compare `(do (break!) 42)` with `(do (break!) (break!) 42)`.