ocp 1.5.1, with default params for with (0) and strict_with (never)
I get this indentation :
let _ =
let () = (* ok *)
match foo with
| "hello" -> true
| "boy" -> true
in
let () = (* ok *)
try
true
with _ ->
true
in
let () = (* not ok *)
try
true
with _ ->
try
true
with _ ->
true
while it would seem more appropriate to have :
let _ =
let () =
match foo with
| "hello" -> true
| "boy" -> true
in
let () =
try
true
with _ ->
true
in
let () =
try
true
with _ ->
try
true
with _ ->
true
ocp 1.5.1, with default params for with (0) and strict_with (never) I get this indentation :
while it would seem more appropriate to have :
Best regards