editors

Discussion about all editors used for Clojure/ClojureScript
borkdude 2015-09-15T12:19:52.000016Z

I was wondering if you can get binding.pry like behavior in CIDER while developing a ring application, as in: fire a new request and the debugger is triggered in emacs

borkdude 2015-09-15T12:20:17.000017Z

I still use mostly println because of this reason

alejandro 2015-09-15T13:57:39.000019Z

@borkdude: you can using the #break annotation

alejandro 2015-09-15T13:57:49.000020Z

(assuming you’re running the ring server from your cider repl)

borkdude 2015-09-15T14:32:59.000023Z

@alejandro: thanks