cljfx

https://github.com/cljfx/cljfx
defa 2021-03-22T10:09:27.041400Z

Is there something comparable to shadow-cljs when developing with cljfx? My current approach is to have

(renderer)
(swap! *state identity)
in my source file, so I can hit cmd-L in Cursive and have the UI update. When distributing components over several namespaces this gets awkward. I guess something like https://github.com/clojure/tools.namespace with (refresh) on save would be nice.

vlaaad 2021-03-22T10:13:02.041600Z

I had a custom REPL command bound to a shortcut that did (swap! *state identity)