hs-cli icon indicating copy to clipboard operation
hs-cli copied to clipboard

Command Line Interface Utility (Printing, Formatting, Options parsing) for Haskell

Results 6 hs-cli issues
Sort by recently updated
recently updated
newest added

Example: ``` import Console.Options import Data.Char (isDigit) import Data.Monoid data MyADT = A | B | C deriving (Show,Eq) main = defaultMain $ do nameFlag Right s) command "sample" $...

Hello This code: ``` import Console.Options main = defaultMain $ do arg Right raw command "sample" $ action $ \toParam -> putStrLn $ show $ toParam arg ``` throws error:...

Hello, it seems that remainingArguments is also including flag arguments with it. For instance: ``` storageDirContent

The `Justify` data type and the `justify` function are currently under two different headings in the library documentation. Currently, `Justify` is under "Table", while `justify` is under "Attributes". Since the...

when creating a new command with argument, the argument is not described in the help message.