cider

A channel dedicated to the Clojure Interactive Development Environment that Rocks (aka CIDER). :cider:
practicalli-john 2020-10-14T01:09:42.203700Z

Perhaps Doom Emacs used SPC u as C-u , this is how Spacemacs calls the universal argument to modify the cider-jack-in command (and other things)

practicalli-john 2020-10-14T01:11:11.203900Z

Doom has a discord channel, which may be useful of more use for Doon specific questions.

ozzloy 2020-10-14T03:08:42.205Z

not sure if this is a cider question. after starting a repl, then updating deps.edn to have a new dependency, how do i get the repl to see that new dependency? right now i'm restarting the whole repl

ozzloy 2020-10-14T03:09:40.205500Z

also, is there a shortcut to get the repl to switch to the namespace of a buffer i'm currently in?

practicalli-john 2020-10-14T09:17:37.210200Z

@ozzloy_clojurians_net I found restarting the REPL to be the most reliable way. If you evaluate code in source code buffers, there is no need to switch namespace on the repl buffer. Cider evaluates code in the namespace it's contained in. There is a cider command to send current namespace to the REPL (can't remember what that's called, but should be obvious by its name)

fenton 2020-10-14T16:36:01.211100Z

@ozzloy_clojurians_net simply load the file with: load-buffer-set-ns, this will load the file and change the ns of the repl to the loaded file.