Frédéric Bour

Results 128 comments of Frédéric Bour
trafficstars

In its current state Merlin is not compatible with a REPL because of the patches applied on compiler-libs. We are looking into making it usable for a REPL, that should...

I didn't implement anything directly on Merlin side yet, but @SanderSpies extracted relevant code and made a proof of concept 👍 . I have some ideas on how to improve...

The entry point of an Lwd application now looks like: https://github.com/let-def/lwd/pull/27/files#diff-97558246d35a0937fdc7830ed9e4149d2cdc0790fcb803c58596c1289e5f763b

There are two parts to the problem, that partially overlaps: - dealing with integration to the DOM - dealing with "non-linear" computations (that might need multiple passes to stabilize... or...

The behavior would be nice to have, but I am not fond of using permanent_sensor for this use-case. It will essentially force the renderer to visit sub-trees and update every...

Thanks for this work. I understand that this make it easier to port existing code, however I am afraid this will grow the API unnecessarily. I wonder if a set...

Other notes: - Nottui would benefit from scheduling callbacks to execute at specific time: before next frame or after a certain delay (animation / popover) (alternative is to use Lwt,...

On theming: wouldn't a list of global variables be enough? Do we need a dynamic map?

The problem then is not whether the map is dynamic, but how to scope it. Should on thread the `control` value manually when building the UI? Or should we add...

Somewhat done, Nottui_widgets is now part of Nottui package. Further merging will come when API stabilizes :)