Fork me on GitHub
#conjure
<
2022-02-18
>
dharrigan10:02:47

Well done @olical on getting some funding from Clojurists Together for Conjure! Great news!

1
5
rafaeldelboni14:02:52

Yeah that was amazing @olical congrats!

Olical14:02:25

Thank you very much!

Hukka11:02:26

Is there a way to see the whole trace, if evaluating a form throws? Right now I can only see the last (well, the top) piece of the stack

dave13:02:20

I usually evaluate *e

Hukka13:02:48

Well, if there's nothing included, I suppose I'll make a shortcut to eval (clojure.stacktrace/e)

Olical14:02:03

There's a mapping for that! I can't remember it though, you'll have to check the help text for Clojure. I think ve?

nate14:02:34

Yup. <leader>ve

dave14:02:14

Oh, nice! I totally forgot about that mapping!

Olical17:02:20

There's also v1 v2 etc that show the last 3 results again which I think is a thing built into nREPL.

dave17:02:39

It's actually built into the Clojure REPL itself!

$ clj
Clojure 1.11.0-beta1
user=> "third back"
"third back"
user=> "second back"
"second back"
user=> "first back"
"first back"
user=> [*1 *2 *3]
["first back" "second back" "third back"]

🎉 1
dave17:02:07

And I don't use Conjure's v mappings nearly enough - I bet they're super useful!

Hukka07:02:23

I had no idea there were such mappings. I checked the help text, but still can't find it 😕

Hukka07:02:19

Ah, I have been missing the whole documentation page about clojure nrepl specific things!