reasonml-editor / vim-reason-plus

Reason Vim editor integration
MIT License
153 stars 20 forks source link

nested auto-indent bug #29

Open chinwobble opened 4 years ago

chinwobble commented 4 years ago

I created a module like this and auto formatted the code by highlighting everything and pressing ==

I expect all the list of strings to be aligned. However when nested like this they aren't.


module MyModule = {
  let result = [
    "a",
      "b",
      "c"
  ]
}