Yilin Wei
Yilin Wei
Currently we're matching on `Ident` and strings; we should definitely be matching on specific symbols instead.
First of all this might be a problem of my workflow rather than anything else, but I found that the `racket-test` command which runs in the REPL has file positions...
I am not too familiar with the API, but I don't think there's any reason it shouldn't return a `PtyMaster` instead; it means that the result cannot be used in...
Discipline is awesome. It's documentation is not. Opening an issue which may or may not be started at hack the tower day to update the documentation so there's a quickstart...
In this bit of code [here](https://github.com/ashton314/emacs-writer/blob/8ee2cf7922a2ab2e0b58638675edd790c26b0582/writer_entry.el#L289), you're using an inline quoted lambda for hooks. The issue with that, is that it tends to be quite hard to introspect the hook...
Unlike `racket`, ELisp doesn't have namespaces unfortunately. The top-level is typically reserved for Emacs provided functions. Unfortunately, with a top-level global namespace you can run into issues without prefixing quite...
`compatibility.h` defines preprocessor macros which means certain identifiers, such as `alloc` cannot be used. The preprocessor expands the identifier into `caml_xxx` in the `offset_of`. This is a problem when binding...
Hi, Recently I've been doing some work with GPU libraries in ocaml and came across this package. It's really cool, but unfortunately `libvulkan` and such depend directly on `libwayland-client` directly,...
Add a build workflow for Github based off of the example in [ocaml/setup-ocaml](https://github.com/ocaml/setup-ocaml). I get an error message about a missing C header when running for Windows, see the [logs](https://github.com/yilinwei/notty/runs/8209514046?check_suite_focus=true),...