Henry Schreiner

Results 2505 comments of Henry Schreiner

Curious. Pre-commit updated a few days ago, but no node changes afaict, that’s all I see that’s changed. Can check soonish, currently at SciPy.

I know this has come up previously somewhere; parent lookup if fallthrough is on is currently missing. It should be pretty easy to add to a Formatter (it should be...

@lczech asked about this on Gitter, that's why I can't find it in issues.

Feel free to try and ask questions. The additions would probably be in `CLI/Formatter.hpp`. `make_groups` would need to check parents if fallthrough is enabled and append to the option list...

CLI::ExistingReadableFile And ...Writable... look like better names I think, but otherwise I like the way you’ve added it! +1

@phlptp I think this was created when some `noexcept` versions were added, but not everywhere.

We'd need to duplicate quite a bit, I think. If this is just a static issue (that is, if it really can't throw an exception here at runtime), it's likely...

Currently, your example `./app -raw 0x05 0x04 0x03` would produce the vector: `["0x05", "0x04", "0x03"]`. Is that not what you want? If you want `["-raw", "0x05", "0x04", "0x03"]` instead, that...

In CLI11, long options must start with a double dash. Subcommands should have no dash. So you can do what you want to rather easily as long as you can...