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

nested [open struct ... end] not indented properly #300

Closed ceastlund closed 4 years ago

ceastlund commented 5 years ago

I start with this program:

include struct
  open struct
    include String
  end
  let get = get
end

ocp-indent indents it like this:

include struct
  open struct
  include String
end
  let get = get
end