Searched refs:next_line_help (Results 1 – 8 of 8) sorted by relevance
/third_party/rust/crates/clap/src/output/ |
D | help_template.rs | 78 next_line_help: bool, field 110 let next_line_help = cmd.is_next_line_help_set(); in new() localVariable 116 next_line_help, in new() 447 let next_line_help = self.will_args_wrap(args, longest); in write_args() localVariable 452 if next_line_help && self.use_long { in write_args() 456 self.write_arg(arg, next_line_help, longest); in write_args() 461 fn write_arg(&mut self, arg: &Arg, next_line_help: bool, longest: usize) { in write_arg() 468 self.align_to_about(arg, next_line_help, longest); in write_arg() 480 self.help(Some(arg), about, spec_vals, next_line_help, longest); in write_arg() 506 fn align_to_about(&mut self, arg: &Arg, next_line_help: bool, longest: usize) { in align_to_about() [all …]
|
/third_party/rust/crates/clap/examples/tutorial_derive/ |
D | 02_app_settings.rs | 5 #[command(next_line_help = true)]
|
/third_party/rust/crates/clap/examples/tutorial_builder/ |
D | 02_app_settings.rs | 5 .next_line_help(true) in main()
|
/third_party/rust/crates/clap/tests/derive/ |
D | non_literal_attributes.rs | 28 next_line_help = true,
|
/third_party/rust/crates/cxx/gen/cmd/src/ |
D | app.rs | 38 .next_line_help(true) in app()
|
/third_party/rust/crates/clap/src/builder/ |
D | arg.rs | 2225 pub fn next_line_help(self, yes: bool) -> Self { in next_line_help() method
|
D | command.rs | 1175 pub fn next_line_help(self, yes: bool) -> Self { in next_line_help() method
|
/third_party/rust/crates/clap/ |
D | CHANGELOG.md | 584 - *(help)* When short help is long enough to activate `next_line_help`, don't add blank lines (#413…
|