Paolo Capriotti
Paolo Capriotti
I think this is actually a bug in `Text.toLower`: Cherokee lowercase letters (e.g. [U+AB82](https://unicode-table.com/en/AB82/)) fold to their uppercase counterparts (e.g. [U+13B2](https://unicode-table.com/en/13B2/)). This is implemented incorrectly in `text`, since the fallback...
I don't have a good answer for this. One thing you can do is read your environment variables before you create the parser, and set their values as defaults. That...
Thanks for the report. The problem is that `value` modifier does not really do what you expect. It actually provides a default value for every occurrence of the argument. So...
> i get the same hang even for non-empty command lines. Sure. I wasn't trying to say that it only hangs for empty command lines, just that the equivalence above...
> that's a statement of exactly why arguments /= many . argument. an argument list with a finite default value is clearly a finite list! Yes, and you can express...
Just remove the default value for `D`.
No, I meant `D strOption (short 'd')`. I'm not sure why you want a default there, it doesn't really make sense. If the option is missing, then it will just...
Optional arguments to regular options are not supported (#67). You can use a different option, though: ``` haskell many $ flag' A (short 'a') (D strOption (short 'd')) (flag' (D...
Actually, that doesn't seem to do the right thing. Other completion scripts call a `_filedir` function to complete with a filter. I looked at the source, and I wish I...
I'm not sure what feature you are requesting here. Can you elaborate? See also #77.