Fork me on GitHub
#emacs
<
2016-03-13
>
richiardiandrea01:03:36

thanks for the answer, looking forward to that!

hlolli09:03:22

Just of creative curiousity. Is there any way to interop emacs and clojure. Say I would want to make a clojure go loop that will make my emacs font color blink, would it be possible?

malabarba12:03:01

@hlolli only if you write a lot of elisp to put that together.

hlolli16:03:34

Any good book on elisp?

jethroksy16:03:07

not that I know of

jethroksy16:03:18

Mastering Emacs is the best book emacs has ever seen imo

nullptr20:03:48

there's a good elisp guide built into emacs -- check in M-x info

hlolli21:03:44

thanks, I think I will check out this book. M-x info I have ignored bit much in favor of emacs wiki and stackoverflow. I think I have coffee, play some Bach and go trough M-x info simple_smile (probably takes more than one night I guess).

bozhidar22:03:41

as for the other question - there's clomacs https://github.com/clojure-emacs/clomacs

bozhidar22:03:47

I never actually used it

bozhidar22:03:02

but the idea is to wrap clojure code in elisp functions

bozhidar22:03:19

the idea has some potential

bozhidar22:03:32

but this project definitely needs a lot of polish

hlolli22:03:08

this project seems to strive for the other direction, get clojure callbacks into emacs. But I may need to look deeper into this. I've already seen communication into emacs via udp connection, but that seems bit big of hammer for just a simple api that I was curious to know if such api existed. Thanks for the link.