alx741 / vim-hindent

Vim Haskell Hindent integration plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aligning '=' in guards

iTsluku opened this issue · comments

Hey, should vim-hindent be able to align those two '=' in the guards of the function (line 13 and 14) ? (doesn't align it for me when saving the file -- i did :HindentEnable and hindent works)

11 minAndMax ⦂ Integer → Integer → (Integer, Integer)
12 minAndMax x y
13 | x >= y = (y, x)
14 | otherwise = (x, y)

Hey, I don't think hindent does that

alright thanks - thought that's a thing somehow.