purescript-contrib/purescript-vim

Add indentation rules for patterns guards

coot opened this issue · 0 comments

coot commented
fun a | a == 0 = ?r
         | otherwise = ?r

or

fun =  case _ of
  x | x == 0 -> ?r
     | otherwise -> ?r