docopt.go icon indicating copy to clipboard operation
docopt.go copied to clipboard

A command-line arguments parser that will make you smile.

Results 32 docopt.go issues
Sort by recently updated
recently updated
newest added

The following usage ``` Usage: %[1]s [-u ...] (-D [-V -p --start]) %[1]s [-u ...] (-V [-p ]) %[1]s [-u ...] (--domdata [--voldata -p ] --start) %[1]s [-u ...] (--voldata...

Last commit was January 2018. Is this project still maintained?

Updated the repository to use `github.com/docopt/docopt.go` which since version Go 1.13 should work ok with Go modules (I know because other project I help maintain `nats.go` was one of the...

Hi, I had added ppc64le(Linux on Power) architecture support on travis-ci in the PR and looks like its been successfully added. Also job for go 1.4 on ppc64le architecture is...

- **parseDefaults:** Now we can find the last `options:` string and ignore all text before it - **parseOption:** Now we can use both tabs and spaces to separate options from...

The argv constructed from the parent command should be used for argument parsing.

Boolean options don't seem to work the way they should. Here is an example: ``` package main import ( "fmt" "github.com/docopt/docopt-go" ) var usage string = ` Mytest. Usage: mytest...

It would be great if it was possible to disable the non-zero check during a bind, so that we can pre-populate certain values and allow for DocOpt to over-ride when...

Hi. I am looking for a future to parse docopt even if no args were given for parser. Real use-case - I want to get all flags (by flag I...