cider

A channel dedicated to the Clojure Interactive Development Environment that Rocks (aka CIDER). :cider:
jumar 2021-02-24T09:47:13.020800Z

Is there a way to jump to the "code at point" from the stacktrace printed in the REPL buffer using a keyboard shortcut? I'm using spacemacs and , g d (should be the same thing as cider-find-var) works most of the time but not here - but mouse click works (opens the code in another buffer).

blak3mill3r 2021-02-25T15:09:01.030800Z

You can actually interrogate emacs for this information C-h k (mouseclick) in the stacktrace buffer should tell you which function is called. Then check C-h m in the stacktrace buffer to see all key maps active in that buffer (so that you can see if something conflicts with ,gd)

blak3mill3r 2021-02-25T15:09:07.031Z

Then bind ,gd to do what you want

blak3mill3r 2021-02-25T15:09:54.031400Z

This confused me as well, I expected RET to work but it did not (probably because of something else in my setup)

jumar 2021-02-24T09:48:19.021300Z