Jules Aguillon
Jules Aguillon
Closing as this is probably not the right approach. Maybe https://github.com/ocaml/odoc/pull/1196 is better.
A button to hide the launcher icon would be nice. I tried on [this branch](https://github.com/Julow/Unexpected-Keyboard/tree/hide_launcher_icn) but unfortunately, this is no longer possible since Android 10. The launcher icon is still...
It's not possible to find the definition of a layout within the app but you can find them all here: https://github.com/Julow/Unexpected-Keyboard/tree/master/srcs/layouts For changing fn and alt, you will need to...
Related to https://github.com/Julow/Unexpected-Keyboard/issues/226
OCaml supports escaping in comments using the string literal syntaxes: ```ocaml (** "*)" {delim| *) |} |delim} *) ``` Perhaps Odoc should parse that and turn it into a code...
Would Android recognize such sequences ? Have you tried with an other virtual virtual keyboard or a physical one ? Related issue about sending key events: https://github.com/Julow/Unexpected-Keyboard/issues/717 Related issue about...
That doesn't immediately solve your issue but with 2060e6a you can now add keypad buttons to your custom layouts: ``` :keyevent symbol='0':144 ``` Key event numbers for keypad numbers are...
More context is needed to reproduce the bug: ``` let x = let get_path_and_distance pv1 pv2 = if is_loop pv1 pv2 then Some ([],0) else match Tbl.find dist_tbl (pv1, pv2)...
Should be fixed by https://github.com/ocaml-ppx/ocamlformat/pull/2551
There's a broken asset in `vg.lib.vg.Vg.P` because it's using an hardcoded path but I couldn't make the reference syntax work. Asset references from libraries might not work.