OCamlPro / ocp-indent

Indentation tool for OCaml, to be used from editors like Emacs and Vim.
http://www.typerex.org/ocp-indent.html
Other
200 stars 63 forks source link

mis-alignment for comments inside list. #265

Closed hhugo closed 5 years ago

hhugo commented 6 years ago

Here is a failing example:

let _ = [ a
          ; (* coment for b *)
          b
        ]

Records look good

let _ = { a
        ; (* comment for b *)
          b
        }