-
Notifications
You must be signed in to change notification settings - Fork 363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Command options are parsed as subcommand if "required()" is not set #1144
Comments
Do you have an example of what the issue is, not entirely sure I follow what is going on? |
In my specific implementation I have two subcommands:
I also have a directory called "config". When I run I hope it is a bit clearer now, please contact me for more information. INFO: I am using v2.5.0 NOTE: After investigation, I think that the issue is originating in this part of the code: CLI11_INLINE bool App::_parse_subcommand(std::vector<std::string> &args) {
if(_count_remaining_positionals(/* required */ true) > 0) { I also noticed that the issue disappears if the previous code is changed to: CLI11_INLINE bool App::_parse_subcommand(std::vector<std::string> &args) {
if(_count_remaining_positionals(/* required */ false) > 0) { |
Any way you can post the code setup for this, or a minimal example? Changing that particular line of code would break a bunch of situation, so isn't really a viable change. |
auto *ls_cmd = p_cli->add_subcommand("ls", "List files");
ls_cmd->add_flag("-l", "Long format");
ls_cmd->add_option("filepath", "Path to list");
ls_cmd->callback([this, ls_cmd, &p_thread_id]() {
List(ls_cmd, &m_io, m_cwd);
p_thread_id = std::nullopt;
}); This is how the ls command is defined. If this is not enough for your investigation I'll try providing a minimal example |
Do you have other subcommands? how many, are there cases when multiple subcommands will be used in the same command line? |
I just found that the same issue was already fixed here: #1022 subcommand_fallthrough(false); modifier fixes it! I guess we can close the issue! Many thanks for your support |
We have a few other subcommands, like "cd" "cp" "mv". For the moment multiple commands in the same line is not supported |
If a command option is not required and if the option matches the name of another command, the option is not parsed properly.
The text was updated successfully, but these errors were encountered: