Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions clap_builder/src/builder/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4827,6 +4827,7 @@ impl Command {
.unroll_args_in_group(g)
.iter()
.filter_map(|x| self.find(x))
.filter(|x| !x.is_hide_set())
.map(|x| {
if x.is_positional() {
// Print val_name for positional arguments. e.g. <file_name>
Expand Down
Loading