Fork me on GitHub
#lumo
<
2017-11-29
>
bhurlow17:11:34

@pjullah regarding your question about using vim with lumo, there’s a discussion about nrepl support here: https://github.com/anmonteiro/lumo/issues/171

bhurlow17:11:51

I’m working on some tooling for using lumo with vim and atom

dominicm17:11:58

@bhurlow Hi, I'm curious to know what approach you're taking with vim+lumo?

bhurlow18:11:13

@dominicm recently I’ve been wrapping the lumo.repl compiler state with a really simple remote socket interface

bhurlow18:11:56

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

bhurlow18:11:10

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

bhurlow18:11:26

could honestly see it work out over HTTP