Results 13 issues of roddyyaga

I'm trying to make a tool with notty that suspends properly on Ctrl-Z and struggling. When I send SIGSTOP or SIGTSTP to a hello world program and continue with `fg`,...

Context: I'm trying to get [lwt-pipe](https://github.com/c-cube/lwt-pipe) working with js_of_ocaml. Currently it uses `Lwt_unix.sleep`, so I need to make it use `Lwt_js.sleep` instead when js_of_ocaml is used. Splitting into two libraries...

It would be really cool if the LSP server/merlin had a command to accept hints like this: Code: ```ocaml 1 +. 2.5 ``` Error: ``` Error: This expression has type...

Is there any way to get ocamllsp to work on files in opam dependencies (specifically, when I go-to-definition to an external library, I'd like to be able to jump around...

I'm trying to use faraday with Async like so: ```ocaml open Async let handle fd = let ic = Reader.create fd in let writev = Faraday_async.writev_of_fd fd in let output_buffer...

On line 58 of query.mll, the function used to convert strings to Booleans `Ppx_mysql_runtime.bool_of_string` takes a string of an integer (e.g. `"1"` or `"0"`) as input, which fits with how...

Is this project still being worked on? I managed to hack together a version of the current master (see my fork) that more or less runs the minimutt example, but...

Hi, I'd like to use tree-sitter from OCaml in the same way I'd use e.g. [the tree-sitter rust bindings](https://github.com/tree-sitter/tree-sitter/tree/master/lib/binding_rust) (i.e. I don't want different OCaml types for each language). How...

I wasn't able to get reprocessing example working as is (various errors involving bs-platform and not recognising `-backend` as an option). Changing `"bsb-native": "^4.0.1100"` in package.json to `"bs-platform": "bsansouci/bsb-native#3.2.0"`fixed this.

I think the Stdin module should read from `/dev/tty` instead of stdin (or else the user should be able to choose). Otherwise writing interactive programs that read input from stdin...

enhancement