I am coding Ocaml with Emacs, at the moment the setting of the indentation of if
gives the following:
if cond1 then e1 else
if cond2 then e2 else
if cond3 then e3 else
e4
I would like to realize the same format as Caml programming guidelines:
if cond1 then e1 else
if cond2 then e2 else
if cond3 then e3 else
e4
Could anyone tell me which parameter is related to that? Thank you
Edit1: here is my .emacs