Magnus Rundberget
Magnus Rundberget
First stab at supporting Elm single page apps which uses client side routing.
Firstly tx for a very handy npm lib. Had a hard time coming up with a short description, so here's a bit of context: - I have a single page...
I see we have overlapping interests, so I thought maybe we could get some synergy. I'm working on providing a better paredit for Light Table https://github.com/rundis/clj-light-refactor/blob/master/src/lt/plugins/cljrefactor/paredit.cljs (tx for the Markdown...
Enable windows users to use the plugin. Currently a shellscript is used to start the groovy client. Batch script or bypass script alltogether ?
Maybe it would be feasible to reuse the autocomple functionality from groovysh ?
``` groovy def myFunc(a, b, c) { // 2, 3, 4 (a * b)/c } def x = myFunc(2,3,4) ´´´ ```
``` groovy class Dummy { def calculate(val) { def temp = val * 2 // 4 temp - 1 // 3 } } new Dummy().calculate(2) // 3 ```
See clojure instarepl for inspiration