@pjullah regarding your question about using vim with lumo, there’s a discussion about nrepl support here: https://github.com/anmonteiro/lumo/issues/171
I’m working on some tooling for using lumo with vim and atom
@bhurlow Hi, I'm curious to know what approach you're taking with vim+lumo?
@dominicm recently I’ve been wrapping the lumo.repl
compiler state with a really simple remote socket interface
see here https://github.com/bhurlow/lumo-project/blob/master/src/lumo/project/read.cljs
and here https://github.com/bhurlow/lumo-project/blob/master/src/lumo/project/remote.cljs
so in the lumo repl i’ll start the remote rpc server, then from vim I can write JSON to a socket channel for evaluation
for my use case, I felt like it made more sense to use an nrepl style thing where I send forms and expect responses, as opposed to the socket repl
could honestly see it work out over HTTP