cljfx

https://github.com/cljfx/cljfx
jamesd3142 2020-04-09T10:03:13.049800Z

Thanks Vlad, this library is brilliant!

💯 1
jamesd3142 2020-04-09T10:27:41.056400Z

I'm using the Atom text editor's Chlorine plugin to automatically refresh the namespace on file save. I get the full interactive experience just like Figwheel+Reagent if I add a watcher to a var which does (swap! *state identity to trigger a re-render. Stoked.

jamesd3142 2020-04-09T10:27:43.056600Z

I'm curious, how do other people have their repl / editor configured?

vlaaad 2020-04-09T11:22:58.057400Z

@jamesdavidson nice, glad you like it! I actually used (swap! *state identity) bound to a shortcut while developing cljfx/hn

vlaaad 2020-04-09T11:25:12.058400Z

you can also call renderer function without args to force refresh everything, but I personally tend not to use it because it closes and opens window, which shifts focus