So K
gives me the docs for a function, is there an equivalent command to get source? If I try (source foo)
(or even (doc foo)
) I get unable to resolve symbol errors.
My apologies if this is unrelated to Conjure but is a repl thing. If so, how do I make sure I always have doc
and source
available in my repl instances?
you can use gd
if k
works gd
should work to
Ahh! Thank you, that's awesome
@chase-lambert you need to fully qualify doc OR use something like dot-slash-2 to make a shortcut.
Also ,vs
will view source, usually works
Ahh, again with a great ,v
shortcut. I appreciate it. I don't think the latest Conjure doc file includes these <localleader> v
shortcuts.
I found it, it's there, but a little buried
you can do :help conjure
and look for nrepl and go to that help file
or do :help conjure-client-clojure-nrepl
to get to the nrepl specific stuff directly
the latter includes the bindings
including another super useful and rarely used one: ,ei
for interrupting a long execution
Yeah, the mappings are split between :help conjure and conjure-client-clojure-nrepl
You can use helpgrep to search ALL help files for things you're interested in which might help you find stuff in the future 🙂
Good thread sharing tools, everyone! 😄