Taylor Fausak
Taylor Fausak
The space thing was reported earlier in #217.
I think this is intentional. The idea is that if you want to put some new lines between tricky bits of code that aren't necessarily separate declarations, Brittany will allow...
Seems like a bug, separate from other related issues like #47.
I know these aren't "good" solutions, especially with respect to pretty printers, but I would work around this by either using parentheses or using a function rather than an operator....
Input: ``` hs {-# language MultiWayIf #-} -- a f = -- b if -- c | False -> -- d 0 -- e | True -> -- f 1...
It seems like this has been fixed in general, but there are still a few edge cases to clean up. Is that accurate?
This seems like the opposite of #174 😆
How _should_ this be aligned? ``` hs f x = case x of "1" -> () -- U+0031 "ï¼’" -> () -- U+FF12 _ -> () ``` All of the...
See also #266 and #327.
I agree, those newlines seem unnecessary to me. Is this what you'd like to see instead? ``` hs main = do let run e = do settings die . color...