Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there such thing as incremental build for OCaml?

Is there any tool that I can use to get the kind of incremental build like those from Eclipse/IntelliJ/Visual Studio?

like image 809
Chris Avatar asked Nov 21 '25 08:11

Chris


1 Answers

Yes, it is called OCaml Merlin. It supports incremental type-checking, IntelliSense-like completion, and code navigation. It works with Emacs, Vim out of the box, and third party extensions provide support for Sublime and Visual Studio Code.

Merlin can be easily installed via the OPAM package manager:

opam install merlin
like image 134
ivg Avatar answered Nov 23 '25 00:11

ivg