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)
Eugene Tyurin 2020-12-11T21:40:44.265Z

Workflow question - how do you guys manage your "scratch file" in conjure? Do you always change (ns http://abc.xyz) on the first line before evaluating code? Or is there a more elegant way?

Olical 2020-12-13T13:51:56.266600Z

You can also use :helpgrep b:conjure#context to set a buffer's namespace (context) to a specific string without putting it in the buffer itself.

1👍
Eugene Tyurin 2020-12-14T15:33:25.267100Z

Thanks @olical - that does the job!

nate 2020-12-11T22:01:22.265100Z

I have a separate tree of files that all have appropriate namespaces, and I add that tree of files when I launch the repl

nate 2020-12-11T22:01:55.265300Z

so for namespace app.foo.bar, I have fiddle.foo.bar with my scratch code and rich comments

nate 2020-12-11T23:24:02.265500Z

and in the fiddle namespace, I either refer all from the other namespace or just qualify all my calls into it