cider

A channel dedicated to the Clojure Interactive Development Environment that Rocks (aka CIDER). :cider:
Gleb Posobin 2020-12-23T03:11:05.389600Z

A follow-up: is it possible to load a namespace, and run a function from it in cider-interactive-eval? I have tried (cider-interactive-eval "(require 'dev) (in-ns 'dev) (restart)") and "(require 'dev) (dev/restart)", neither works, doesn't find the restart function.

dpsutton 2020-12-23T03:18:09.390500Z

I think dev is sometimes weird? What happens if you just run that from a repl?

Gleb Posobin 2020-12-23T03:58:28.391200Z

I am actually using development, not dev, I wrote the message with dev for brevity, didn't know dev is weird. With development it works from the repl.