Ashish Agarwal

Results 57 issues of Ashish Agarwal

Consider you have a file in a directory called src/ with the following contents: ``` $ cat src/foo.mpp (( input bar.txt )) ``` Currently, the file `bar.txt` is searched relative...

Is there a library function corresponding to the main app's functionality? As far as I can tell, it is within `mpp_main.ml` but not exposed as a callable function. I would...

I want to do: ``` mpp -set x=true foo.mpp mpp -set x=false foo.mpp ``` and then in `foo.mpp`, do something like ``` {{if (( get x )) = true Got...

Design-Implementation

In [Result](https://ocaml.janestreet.com/ocaml-core/110.01.00/doc/core/#Result), we have `val map` show up twice. I'm guessing this is because the mli file has the value both explicitly specified and included via an `include` statement. In...

For example, typing `catch` into the box [here](http://mirage.github.io/lwt/) just redirects me to [this](http://mirage.github.io/lwt/#).

b823ec53abf34b8a130922ed07bd8d3aab4fe961 deleted an instance of `open Core` in `cli.ml`. This might be wrong since we still `open Async` in that file. We should resolve the matter by doing these kind...

Symbolic links lead to the possibility of cycles. Cycles are not necessarily wrong, so we don't consider them ill-formed at construction time. However, some operations will lead to an infinite...

- [XDG Base Directory Specification](http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html) - [Debian's recommendation to use XDG spec](https://wiki.debian.org/XDGBaseDirectorySpecification) - OCaml library [ocaml-xdg-basedir](http://xdg-basedir.forge.ocamlcore.org/api/) that already implements it.

enhancement
low priority

`Cli.{abs_file, abs_dir}` should support autocompletion.

enhancement