-
Notifications
You must be signed in to change notification settings - Fork 412
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use setup-ocaml@v2 Signed-off-by: Sora Morimoto <sora@morimoto.io> Signed-off-by: Etienne Millon <me@emillon.org> * Remove ci.ml Signed-off-by: Etienne Millon <me@emillon.org> * Disable dune cache Signed-off-by: Etienne Millon <me@emillon.org> * Do not install fswatch Signed-off-by: Etienne Millon <me@emillon.org> * Reformat code Signed-off-by: Etienne Millon <me@emillon.org> Co-authored-by: Etienne Millon <me@emillon.org>
- Loading branch information
Showing
12 changed files
with
103 additions
and
175 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,11 @@ | ||
open Import | ||
|
||
let doc = | ||
"Command group related to Coq." | ||
let doc = "Command group related to Coq." | ||
|
||
let sub_commands_synopsis = | ||
Common.command_synopsis | ||
[ "coq top FILE -- ARGS" | ||
] | ||
let sub_commands_synopsis = Common.command_synopsis [ "coq top FILE -- ARGS" ] | ||
|
||
let man = | ||
[ `Blocks sub_commands_synopsis | ||
] | ||
let man = [ `Blocks sub_commands_synopsis ] | ||
|
||
let info = Term.info ~doc ~man "coq" | ||
|
||
let group = | ||
( Term.Group.Group | ||
[ in_group Coqtop.command | ||
] | ||
, info ) | ||
let group = (Term.Group.Group [ in_group Coqtop.command ], info) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.