Tenebris
Tenebris
This enhancement has not yet been implemented?
> In past experience, Boost.Program_options ([Sphinx docs](https://stellar-group.github.io/hpx/docs/sphinx/branches/master/html/libs/program_options/api.html?highlight=wvalue)) is the only library that allowed me to program wmain in real code. But Boost's choice is to template everything on character type...
> If we were to add formatters, IMHO it would take almost as much code to make a custom formatter as to make custom help output. > > Because `Argument`...
> Because `Argument` objects handle their own help output, you can order them however you prefer. With a `std::map` to hold groups of `Arguments`, there is little overhead How to...
@skrobinson
> @Theodikes Thank you for the bump, I missed your reply in the recent flood of Issues. > > I'll assume the error you see is something like > >...
And is it possible to make a "abbreviated" command name, like with an argument? For example, fullname of argument - `--input`, shortname - `-i`, same way for subcommand: fullname -...
> And is it possible to make a "abbreviated" command name, like with an argument? For example, fullname of argument - `--input`, shortname - `-i`, same way for subcommand: fullname...
> For command abbreviations, there is no built-in support for aliases like there is for `Argument`. Does it make sense to implement this and send you a pull request, or...
> Can you preprocess the `wmain` parameters into a `std::vector` and call the `program.parse_args(const std::vector)` overload? I cannot preprocess "wmain" into vector of string, because if you convert specific symbols...