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)
dharrigan 2021-01-21T09:26:25.001600Z

So, until this issue has had some thought <https://github.com/Olical/conjure/issues/132>, I'm wrapping the inner sections of my (comment..) blocks with a (do....). Anyone got any other strategies?

👀 1
2021-01-21T13:31:15.001700Z

Wrapping with a do is what I do too.

2021-01-21T14:50:09.001900Z

I’m missing something. How does this help?

2021-01-21T14:56:03.002100Z

My use case is running several forms inside a comment block at once.

2021-01-21T14:58:29.002300Z

I thought #132 is the problem where I have something like (comment (+ 1 1)) and I press ,er inside the (+ 1 1) form, which currently just evals the (comment …) and returns nil.

2021-01-21T15:04:30.002500Z

Oh, I think I see. I thought the idea #132 was to stop the “eval root” just before the comment. I think what you folks are suggesting is that “eval root” should eval the whole comment as a do , so wrapping the content in a do and doing ,ee in the do is a workaround. Do I have that right?

2021-01-21T19:40:16.002700Z

Yes, that's what I do, I actually do not have an opinion about #132 except that the current behavior has no utility except consistency 😉