Fork me on GitHub
#cider
<
2016-06-08
>
ddellacosta21:06:42

okay, newbie question: how do I keep the clojure.repl stuff available to me when I load up a namespace in cider using C-c M-n ?

aengelberg22:06:10

In my several years of clojure experience I never found an answer to that 🙂 sadly all those functions only stick around in whatever namespace you are in, so you have to (use 'clojure.repl) wherever you want it.

aengelberg22:06:53

@ddellacosta maybe you could set some custom keybinding to type (use 'clojure.repl) [RET]

richiardiandrea22:06:43

basically interning stuff in clojure.core does the trick if I remember correcly