Eivind Magnus Hvidevold

Results 11 comments of Eivind Magnus Hvidevold

I need this fix as well.

Thanks for the heads up! I ran into the same problem: taking a minute for gamma's compile to run. In addition, it doesn't succeed in compiling. Without nested assignments it...

https://stackoverflow.com/questions/29850471/how-to-implement-return-early-logic-in-f https://blog.janestreet.com/core-gems-many-happy-returns/ https://github.com/hcarty/with_return https://jaredforsyth.com/posts/building-async-await-in-reason/

IwanKaramazow at discord: things I tried: - exceptions - while loops with a ref to break out of the loop - recursion (not always possible)

emh at discord: it's not so far from what I am doing now actually. for every js expression I translate to U(astNodeIndex, expression) where U is a function that records...

Sorry, I don't want to think about programming right now. Perhaps go to the discord channel for ReasonML and ask there? I had the answer in my mind before, but...

I made a pull request implementing support for multibyte at https://github.com/coolwanglu/vim.js/pull/25

@Sibicoder Yes, just apply this PR, change --disable-multibyte to --enable-multibyte in build.sh and build it :)

I want to do something similar, replace [CodeMirror](http://codemirror.net/) in [JSBin](github.com/jsbin/jsbin/). You'd need to provide synchronization between buffer read/write and a DOM node. Enumerate textareas and replace with vim canvas, set...

The following will append a DOM node with the filename as ID and file content as innerHTML on file write. On read it will overwrite the file with the contents...