conjure

:neovim:+:clj: https://github.com/Olical/conjure - If you're enjoying Conjure and want to say thanks: https://github.com/users/Olical/sponsorship :smile: (alt https://conjure.fun/discord)
Chase 2020-07-07T15:20:31.414300Z

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.

Chase 2020-07-07T15:22:07.415200Z

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?

Fortino Gutierrez 2020-07-07T16:42:51.415400Z

you can use gd if k works gd should work to

Chase 2020-07-07T17:05:23.415600Z

Ahh! Thank you, that's awesome

1👍
dominicm 2020-07-07T17:21:57.416700Z

@chase-lambert you need to fully qualify doc OR use something like dot-slash-2 to make a shortcut.

nate 2020-07-07T18:17:02.416900Z

Also ,vs will view source, usually works

Chase 2020-07-07T18:30:48.417100Z

Ahh, again with a great ,v shortcut. I appreciate it. I don't think the latest Conjure doc file includes these <localleader> v shortcuts.

nate 2020-07-07T18:47:07.417500Z

I found it, it's there, but a little buried

nate 2020-07-07T18:47:22.417700Z

you can do :help conjure and look for nrepl and go to that help file

nate 2020-07-07T18:47:31.417900Z

or do :help conjure-client-clojure-nrepl to get to the nrepl specific stuff directly

nate 2020-07-07T18:47:40.418100Z

the latter includes the bindings

nate 2020-07-07T18:48:22.418300Z

including another super useful and rarely used one: ,ei for interrupting a long execution

Olical 2020-07-07T20:35:13.418500Z

Yeah, the mappings are split between :help conjure and conjure-client-clojure-nrepl

Olical 2020-07-07T20:35:34.418700Z

You can use helpgrep to search ALL help files for things you're interested in which might help you find stuff in the future 🙂

Olical 2020-07-07T20:35:52.418900Z

Good thread sharing tools, everyone! 😄