I just released fixes last night for refreshing the REPL and to support Atom 1.7 which is in beta.
Next on my list is improving performance when executing a command that returns a lot of data. I'm going to dig into it further but I think the problem is parsing EDN performance. Transit looks like the right solution http://swannodette.github.io/2014/07/26/transit--clojurescript/
I’ve been a happy user of protorepl for the last few weeks - it’s fantastic :thumbsup:
Thanks! That's great to hear.
Related to my previous performance comment. I've done some analysis. EDN parsing is the least of my problems. Proto REPL is doubly parsing the EDN but that's only maybe 5% of the total time to display something.
https://cloud.githubusercontent.com/assets/192983/14061459/eebd5c48-f356-11e5-9472-bda513b29f3e.png
I'm guessing I can cut that current time to display results from the REPL down to 30-50% of how long it takes currently through some small changes.