inf-clojure

GitHub: https://github.com/clojure-emacs/inf-clojure Discord (official chat): https://discord.gg/nFPpynQPME
valtteri 2018-02-27T07:04:31.000183Z

Has someone implemented ‘cider-like’ overlays (or something similar) for displaying inline eval results? I’d like to have that in my own setup and I’m wondering where to start. I found this but it looks a bit scary for my non-existent elisp skills. 🙂 https://github.com/clojure-emacs/cider/blob/master/cider-overlays.el

richiardiandrea 2018-02-27T15:51:49.000798Z

My idea at some point wan not to rewrite these things, but to use cider's by calling functions when necessary. So inf-clojure could just expose a defcustom called inf-clojure-eval-side-effect or something and in there you would call the cider overlay fn

richiardiandrea 2018-02-27T15:53:28.000214Z

Just need to know what is the input to cider's fn, if you'd like to have it please open an issue if you can pointing to the entry point in cider...

bozhidar 2018-02-27T16:34:02.000794Z

Well, there’s also https://github.com/xiongtx/eros, which is a version of the CIDER code for Elisp

bozhidar 2018-02-27T16:34:34.000774Z

It’s not like we can’t make a generic package that can be shared, but no one has time for something like this and it’s unlikely to happen any time soon.

richiardiandrea 2018-02-27T16:48:47.000703Z

Oh that is cool