lumo

:lumo: Standalone ClojureScript environment. Currently at version 1.9.0
2017-11-29T17:01:34.000488Z

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

2017-11-29T17:01:51.000448Z

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

dominicm 2017-11-29T17:24:58.000286Z

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

2017-11-29T18:34:13.000305Z

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

2017-11-29T18:34:56.000393Z

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

2017-11-29T18:36:10.000776Z

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

2017-11-29T18:36:26.000716Z

could honestly see it work out over HTTP