CLI11 icon indicating copy to clipboard operation
CLI11 copied to clipboard

CLI11 is a command line parser for C++11 and beyond that provides a rich feature set with a simple and intuitive interface.

Results 141 CLI11 issues
Sort by recently updated
recently updated
newest added

I am using app.fallthrough() to define common options at the topmost level. While this works perfectly, it seems that the help message does not include those "inherited" options. For example,...

planned

I used the example code to be able to enter a parameter as a number or as enum string. ``` std::map flagsMap{ { "normal", normal }, { "allow_downgrade", allow_downgrade },...

enhancement

I understand, that header-only libs are easy to incorporate into software, but I dislike them except of some special cases where their usage is justified. More precisely, IMHO usage of...

This is an inverse of https://github.com/CLIUtils/CLI11/issues/437 and https://github.com/CLIUtils/CLI11/pull/450 I had the exact opposite situation: I have an existing application, which accepts flags and options and has no subcommands. Now I...

### [Codacy](https://app.codacy.com/gh/CLIUtils/CLI11/commit?cid=568968254) detected an issue: #### Message: `Exception thrown in function declared not to throw exceptions.` #### Occurred on: + **Commit**: 6aa546fc427871e2e3bbd99bc40b4d5d790c3ef7 + **File**: [include/CLI/App.hpp](https://github.com/CLIUtils/CLI11/blob/6aa546fc427871e2e3bbd99bc40b4d5d790c3ef7/include/CLI/App.hpp) + **LineNum**: [2155](https://github.com/CLIUtils/CLI11/blob/6aa546fc427871e2e3bbd99bc40b4d5d790c3ef7/include/CLI/App.hpp#L2155) + **Code**:...

I'd like to forward an exe line arguments through a program using CLI11. The expected result is: ``` $ ./my_program run --deps path_to_deps_description_file mycommand --args -f mycommand_file ``` where _--deps_...

According to https://cliutils.github.io/CLI11/book/chapters/options.html, the group name "Hidden" should lead to the options in that group not being shown in the help. However, with CLI11 v1.9.1, they still show up. I...

docs

Positional arguments seem to be a topic of interest and figuring out how the matching should be done in relation to unlimited positional arguments and some other modifiers is a...

question
docs

Inspired by https://github.com/open-source-ideas/open-source-ideas/issues/270 . It may be nice to have an "--hexplain" (`--help` + `--explain`, the name is intentionally mistyped instead of using `--explain` in order to avoid potential conflicts,...