fix: ChunkDelta thinking field in test initializers; fix parse_local_help_action ? operator

This commit is contained in:
YeonGyu-Kim
2026-05-25 12:26:32 +09:00
parent f003a108e3
commit e7d5d08892
3 changed files with 1060 additions and 27 deletions

View File

@@ -882,7 +882,7 @@ fn parse_args(args: &[String]) -> Result<CliAction, String> {
// #684: --help before subcommand should still route to subcommand-specific
// help when the subcommand is one of the local-help-topic commands.
if let Some(action) = parse_local_help_action(&rest, output_format) {
return action?;
return action;
}
// When --help was consumed before the subcommand, rest has no help flag.
// If rest is a simple local-help subcommand with no extra args, route there.