Results 40 issues of Tima Kinsart

To reproduce, try to format the following file: ``` (* Invariants: - x *) ``` with the following `.ocamlformat`: ``` version = 0.26.2 profile = janestreet wrap-comments = true ```...

Kind/Bug :x:

I'm seeing the option `wrap-comments`, but when set to `true`, it doesn't wrap documentation comments (only regular comments). Is there any way to wrap documentation comments? From `doc/manpage_ocamlformat.mld`: ``` --wrap-comments...

Kind/question

First of all, thank you for all your work on algebraic effects, especially libhandler and Koka -- for me, they have always been a strong source of inspiration and examples...

The current API versions of NETMAP are defined as the following: ``` #define NETMAP_API 14 /* current API version */ #define NETMAP_MIN_API 14 /* min and max versions accepted */...

The original `NIOCGREGIF` is defined in `netmap_legacy.h` as the following: ``` /* * FreeBSD uses the size value embedded in the _IOWR to determine * how much to copy in/out....

(This is a continuation of [my attempt] to use a library with foreign C code.) [my attempt]: https://github.com/ocaml/dune/issues/10461 Run `dune init proj --kind=library foo`. Put the following `support.c` file in...

My `lib/dune` is the following: ``` (library (name foo)) (include_subdirs unqualified) (menhir (modules parser) (flags --explain --dump)) (ocamllex lexer) ``` But the issue is that I have `parser.mly` and `lexer.mll`...

From `README.md`: > After "Attributes in formal function parameter position"(#60406) stabilize, change function-like macros to attribute-like macros. Now they are stabilized!

I would like to add more ability for colour customization; e.g., colouring dots and line numbers. Are PRs of this type welcome to `pp_loc`, or is this library just meant...

Hi there! I came from your [Reddit post] and found this project fascinating. While reading the sources, I've found the header `include/lone/types.h`, which uses a common technique of tagged unions....

enhancement