cliche icon indicating copy to clipboard operation
cliche copied to clipboard

AutoMagic CLI argument parsing is cliche

Results 2 cliche issues
Sort by recently updated
recently updated
newest added

how about exporting `func explainHelp` or inject the resulting string in `getOpt` caller scope (just like vars)? This way devs can quit the program with nice formatted help screen if...

enhancement
help wanted
good first issue
invalid
design

Presently the logic to parse types is hardcoded https://github.com/juancarlospaco/cliche/blob/nim/src/cliche.nim#L122-L139 . Is there any specific reason this does not use a generic interface like the following? ```nim proc parseCommand[T](input: openarray[char]): T...

design