protorepl

jasongilman 2016-12-31T00:35:29.000437Z

I actually thought about the card thing but it was going to take too long to put together. Proto REPL already has a way to do the extension thing

jasongilman 2016-12-31T00:38:08.000438Z

You can write an extension that can display things in any way you want. It's not exactly what you're talking about but it can accomplish the same thing

jasongilman 2016-12-31T00:39:06.000439Z

Proto REPL charts Clojure functions just return data like this:

jasongilman 2016-12-31T00:39:11.000440Z

[:proto-repl-code-execution-extension "proto-repl-charts" {:type "chart" :name name :data chart-config}]

jasongilman 2016-12-31T00:41:51.000443Z

The extension gets called within Atom to do the displaying https://github.com/jasongilman/proto-repl-charts/blob/master/lib/proto-repl-charts.coffee#L28

2016-12-31T22:52:59.000446Z

is there a way to rerun the last command sent to the repl?