ocp-indent

ocp-indent is a customizable tool to indent OCaml code.


Ressources

ocp-indent on GithubLatest sources in the official GIT repository

Installation

Using OPAM

The simplest way to install ocp-indent is using OPAM:

opam install ocp-indent

From sources

You can also install ocp-indent from sources. You'll need ocaml (>= 3.12.1) and ocp-build (>= 1.99.3-beta):

./configure
make
make install

If you use opam and want it installed alongside ocaml, you may want to use ./configure --prefix $(opam config var prefix).

Usage

The above installation step copies elisp and vim scripts to <prefix>/share/typerex/ocp-indent/. You then need to load them in the editor of your choice to automatically use ocp-indent.

Emacs

Run the following command to setup tuareg-mode to use ocp-indent:

echo '(load-file "'"$(opam config var prefix)"'/share/typerex/ocp-indent/ocp-indent.el")' >>~/.emacs

Vim

Use the following command to tell Vim to use ocp-indent:

echo 'autocmd FileType ocaml source '"$(opam config var prefix)"'/share/typerex/ocp-indent/ocp-indent.vim' >>~/.vimrc

Other editors

As ocp-indent is a command-line tool, you can easily integrate it with other editors.

ocp-indent <src-file> > <dst-file>

You can also tell it to indent only a subsets of lines, and to output only the indentation level:

ocp-indent <src-file> --lines <l1>-<l2> --numeric

Configuration options

By default, ocp-indent comes with sensible default parameters. However, you can customize some of the indentation options using command-line arguments. For more details, see:

ocp-indent --config help

Configuration file

The same parameters can be defined in a configuration file, allowing for user defaults and per-project parameters. The latter is particularly convenient to transparently ensure consistency in projects with many contributors, without requiring them to change their settings in any way (except that, obviously, they need to use ocp-indent !).

If a .ocp-indent file is found in the current directory or its ancestors, it overrides definitions from ~/.ocp/ocp-indent.conf and the built-in default. The command-line can of course still be used to override parameters defined in the files.

Have a look at ocp-indent's own .ocp-indent file for an example.

In-file configuration

There is no built-in support for in-file configuration directives. Yet, some editors already provide that features, and with emacs, starting your file with a line like:

(* -*- ocp-indent-config: in=2 -*- *)

will enable you to have the indentation after in setup to 2 locally on this file.

How does it compare to tuareg ?

We've run some benchmarks on real code-bases and the result is quite conclusive. Keep in mind than most of existing source files are either indented manually or following tuareg standards. You can see the results here.

Moreover, as ocp-indent has a deep understanding of the OCaml syntax it shines on specific cases. See for instance the collection of unit-tests here. The currently failing tests can be seen here.

Testing

It's hard to deliver a great indenter without tests. We've built ocp-indent based on a growing collection of unit-tests. If you find an indentation bug, feel free to send us a code snippet that we will incorporate into our test suite.

The tests are organized as follows:

Please make sure tu run make && tests/test.sh --git-update before any commit, so that the repo always reflects the state of the program.