├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── bacon.toml ├── doc ├── area-dark.png ├── area-light.png ├── bacon.png ├── broot-clap-help.png ├── broot-vanilla.png ├── custom.png └── with-examples.png ├── examples ├── area │ └── main.rs ├── custom │ └── main.rs ├── with-additional-option │ └── main.rs └── with-examples │ ├── examples.rs │ └── main.rs └── src ├── lib.rs └── printer.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/README.md -------------------------------------------------------------------------------- /bacon.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/bacon.toml -------------------------------------------------------------------------------- /doc/area-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/doc/area-dark.png -------------------------------------------------------------------------------- /doc/area-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/doc/area-light.png -------------------------------------------------------------------------------- /doc/bacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/doc/bacon.png -------------------------------------------------------------------------------- /doc/broot-clap-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/doc/broot-clap-help.png -------------------------------------------------------------------------------- /doc/broot-vanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/doc/broot-vanilla.png -------------------------------------------------------------------------------- /doc/custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/doc/custom.png -------------------------------------------------------------------------------- /doc/with-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/doc/with-examples.png -------------------------------------------------------------------------------- /examples/area/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/examples/area/main.rs -------------------------------------------------------------------------------- /examples/custom/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/examples/custom/main.rs -------------------------------------------------------------------------------- /examples/with-additional-option/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/examples/with-additional-option/main.rs -------------------------------------------------------------------------------- /examples/with-examples/examples.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/examples/with-examples/examples.rs -------------------------------------------------------------------------------- /examples/with-examples/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/examples/with-examples/main.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/printer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/clap-help/HEAD/src/printer.rs --------------------------------------------------------------------------------