Could anyone here help illuminate what the recommended workflow in Conjure is for a project with both Clojure+ClojureScript? Is there any easy way to switch back and forth between the two REPLs?
Also, I'd be curious to hear if most people here use something like vim-jack-in, or just start their REPL themselves in the terminal
So I just start my REPL outside and have for years. I think that sort of tooling should be shared by the team in a script everyone can execute and not buried in editor config, personally.
And here's the parts I added specifically to hop between cljs and clj connections. The article is a little old, there might be something newer out there somewhere https://github.com/Olical/conjure/wiki/Multiple-connections-with-ConjureClientState
But client state is what you want. It allows you to have many different instances of the client at once, configured differently and connected to different REPLs. You can manually flip between by mapping keys to different state keys or you can set up an autocmd for your project to do it based on the file extension.
Thank you!
> So I just start my REPL outside and have for years. I think that sort of tooling should be shared by the team in a script everyone can execute and not buried in editor config, personally. Yep, that reasoning makes sense to me as well