Dan Rosén

Results 69 comments of Dan Rosén

I will certainly suggest it for the main developer of Kakoune. I am not sure that they are willing to add this >1000-line python program though...

Thanks. There are other bashisms used at other places too, like `${var/pattern/replacement}`, but now that there's an interest to change them I might get around to actually doing it :)

The goal is to replace all newlines with `_n`, so first underscores are replaced to `_u`. This can be done using calling `sed` instead of bash substitutions. I'll happily accept...

Hej! Happy to hear that you find it helpful! There is no support for this right now. I did run into the same problem and I would like to support...

I think the `async` notation will force you into a Promise world which you cannot get out of. One could try to make a promise-like thing which is actually the...

Nope, generators won't help (directly) since it's not possible to `yield` under a lambda: ```typescript async function test(k: (h: () => void) => void) { k(() => yield 1) }...

I could isolate it to evaluating the tree in the two different monads. It avoids some code duplication but not all: https://github.com/danr/proptest/commit/a9e20735891a82e2b7b87600dc1091e6d2ecac24 The tests pass for sync tests, I haven't...

Thanks, I like this change. It does make the `one`-`four` functions redundant. There is a difference: `two` replicates one generator twice whereas `pair` tuples two different generators.

Interesting, do you know which changes to kakoune are causing this?

Thanks for bisecting! Maybe the easymotion code is doing something sloppy around line endings that now get catched with this new commit.