-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better command line handling, with subcommands.
- Loading branch information
Showing
25 changed files
with
507 additions
and
462 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
Installation via Opam | ||
--------------------- | ||
Installation via [Opam](http://opam.ocaml.org/) | ||
----------------------------------------------- | ||
|
||
See http://opam.ocaml.org/. | ||
The version of `lambdapi` that is directly available through Opam (with the | ||
command `opam install lambdapi`) is currently outdated. We will only publish | ||
a new version of `lambdapi` Opam pacakge when the development has reached a | ||
more stable test. For now, we advise you to pin the development repository to | ||
get the latest bug fixes. | ||
|
||
```bash | ||
opam install lambdapi | ||
opam pin add lambdapi https://github.com/Deducteam/lambdapi.git | ||
``` | ||
|
||
The installation of `lambdapi` gives you: | ||
- a main executable named `lambdapi` in your `PATH`, | ||
- an OCaml library called `lambdapi`, | ||
- an LSP-compatible server called `lp-lsp` in your `PATH`, | ||
- an OCaml library called `lambdapi.core` (system internals), | ||
- an OCaml library called `lambdapi.pure` (pure interface), | ||
- an OCaml library called `lambdapi.lsp` (LSP server), | ||
- a `lambdapi` mode for `Vim` (optional), | ||
- a `lambdapi` mode for `emacs` (optional). |
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.