Leandro Ostera

Results 115 comments of Leandro Ostera

Hi @metasansana I don't think this is something that is currently supported since the plugin simply sends the commands over to `tmux` and doesn't really know when the commands have...

Consider using ocaml crunch maybe? https://github.com/mirage/ocaml-crunch

@qaisjp did I understand that a multiline code block from Discord will be seen as multiple lines _by matterbridge_ ?

Crosslinking external output issue from `odoc` here: https://github.com/ocaml/odoc/issues/275

I've spent the last few days investigating how we can embed `odoc` into `bs-platform`. The two approaches I've listed down are: 1. Embed as a single file, in the same...

After exploring more building with esy, we'd need: 1. To bake an `esy` binary into `bs-platform`, which may not be ideal. 2. Include a `odoc.exe` target into `lib/body.ninja` that shells...

@bobzhang can you ellaborate on `bs-platform` being self container?

@yawaramin we could pack `odoc` for npm consumption. It is doable, we just haven't done it. There's 2 arguments to be made against it. Firstly, `odoc` needs to be compiled...

It looks like polymorphic variants right now are translated to _almost_ what you'd expect: ```rescript let a = #hello({ "world": 1 }) ``` ```js var a = { NAME: "hello",...

> @emmenko: I guess a bit unrelated to the async stuff, but I was wondering if a middleware can end the response before going through the router. > @ulrikstrid: That...