Fork me on GitHub
#cider
<
2021-02-24
>
jumar09:02:13

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).

blak3mill3r15:02:01

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)

blak3mill3r15:02:07

Then bind ,gd to do what you want

blak3mill3r15:02:54

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