tuareg icon indicating copy to clipboard operation
tuareg copied to clipboard

Hanging @@

Open Chris00 opened this issue 8 years ago • 1 comments

The code

let start () =
  Log_reporter.(create () |> run) @@ fun () ->
                                     xx

would be preferably indented as

let start () =
  Log_reporter.(create () |> run) @@ fun () ->
  xx

(just as with >>=).

Chris00 avatar Jan 09 '17 22:01 Chris00

Also

let () =
  f @@
  g @@
  x

is desired instead of

let () =
  f @@
    g @@
      x

Chris00 avatar Jan 29 '17 13:01 Chris00