cider

A channel dedicated to the Clojure Interactive Development Environment that Rocks (aka CIDER). :cider:
jmckitrick 2020-12-13T13:22:31.319400Z

I have a legacy project using the old (original) figwheel. I have it working perfectly with CIDER, but I always run (stop-autobuilds) and then (start-autobuilds) to add my ‘test’ build id. Is there a way to make that happen automatically? Again, this is the old figwheel, not figwheel-main….

2020-12-13T19:11:03.320600Z

Can cider-eval-last-sexp pretty-print? I often return a map and it's currently being shown on one loooooong line.

bozhidar 2020-12-13T19:12:56.321500Z

It can't as there's no good way to do pretty printing in an overlay. It's best to use the dedicated eval-pprint commands instead.

👍 1
2020-12-13T19:13:37.321900Z

Ah, that makes sense, thanks