In Spacemacs, with an active CIDER REPL, is there a way to browse and jump to the functions in the current clojure-mode
buffer?
I have tried cider-browse-ns
. However, that appears to just display the functions and variables in the current namespace, along with their docstrings. The list cannot be used to jump directly to the function/var in the source code. I am also aware that g d
will jump directly to the definition of the function under point. So the pieces of what I am looking for seem to all be available, I just cannot find how to wire them together.
An analogy to what I am looking for is IntelliJ's Structure
sidebar.
It would be awesome if IntelliJ's Navigate -> Symbol
functionality was possible as well. Searching for the function name, using /
, comes pretty close (albeit without the handy fuzzy matching).
would SPC s j
(help-jump-in-buffer) be what you search ?