Jean-Michel Bea
Jean-Michel Bea
* The pin of reason is no longer necessary as reason 3.8 supports ocaml 4.13 * Fix a higher bond to caqti. Caqti 1.8 introduces new deprecations that would require...
The GitHub skeleton hardcodes the default branch to `master` while Github allows the branch to be named something else. As far as I know, this is an issue only for...
Hi. I would be interested in using this plugin and maybe helping with the development. Are you still maintaining this repository? Thanks
I'm not sure if the code lens highlight groups are set, but by default they are a bit too jarring. As a quick fix, I've linked it to the Comment...
Not sure if it's a bug of me just misunderstanding how to use joins. Assuming the following tables: ```ocaml let (person, Expr.[id; name]) = StaticSchema.declare_table schema ~name:"person" Schema.[field "id" ~ty:Type.int;...
This allow the user of this handler to enable/disable the logging independently of the rest of the application Logging at debug level means in the default Dream configuration no logging...
Make sure the fonction.outer includes the in keyword `in`, e.g.: let f x = let g y = 1 in f (g 2) ^_____________^