Neil Mitchell
Neil Mitchell
I am intending to fix terminal-size on Windows for another project, so that won't be an issue: https://github.com/biegunka/terminal-size/issues/3 It's usually easier not to provide something, since as soon as I...
The new version of terminal-size now works on Windows, which means using terminal-size by default for the help width should work. I've split out the newline thing into #18 and...
Can you please try setting `{-# OPTIONS_GHC -fno-cse #-}` at the top of the file - does that fix it?
I switched, but now it doesn't work (the code has bitrotted since jQuery 1.4), it still isn't documented, it doesn't pass the tests etc. Needs some love to rehabilitate.
A slightly simpler example: ``` data State = On | Off deriving (Data, Show, Typeable) data Mode = Mode {state :: [State]} deriving (Show, Data, Typeable) main = print =
Not sure there is much I can do about this, other than call it out in the docs. Given a newtype, and the way the `&=` works, `Foo { arg...
System.Console.CmdArgs.Explicit.helpText: required arguments are rendered as optional and vice versa
OK, certainly a bug - I've got the boolean test the wrong way round - I figure out if it's required, then only put `[]` around it if it is...
System.Console.CmdArgs.Explicit.helpText: required arguments are rendered as optional and vice versa
Hmm, this one actually turns out to be a little tricky to solve without breaking anything else... CmdArgs Explicit can deal with a list of required arguments, followed by an...
I think you need to add the following to the module which defines `mode1` and `mode2`: ``` {-# OPTIONS_GHC -fno-cse #-} ``` That should fix it. Alternatively, you can omit...
I've just checked. I have some stuff that makes CSE less likely to happen, which works fine in GHC 7.6, but has broken in 7.8. I'll see if I can...