neovimhaskell/haskell-vim

New Line Comma Indent Copies Comment Indent

theNerd247 opened this issue · 1 comments

The following code:

data Foo = Foo
  {
 -- Comment with wrong indent
, bar :: Int
  }

Does not reformat to this:

data Foo = Foo
  {
 -- Comment with wrong indent
  , bar :: Int
  }

Is this a bug or feature?

This should now be fixed.