Home
last modified time | relevance | path

Searched refs:next_line_help (Results 1 – 8 of 8) sorted by relevance

/third_party/rust/crates/clap/src/output/
Dhelp_template.rs78 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/
D02_app_settings.rs5 #[command(next_line_help = true)]
/third_party/rust/crates/clap/examples/tutorial_builder/
D02_app_settings.rs5 .next_line_help(true) in main()
/third_party/rust/crates/clap/tests/derive/
Dnon_literal_attributes.rs28 next_line_help = true,
/third_party/rust/crates/cxx/gen/cmd/src/
Dapp.rs38 .next_line_help(true) in app()
/third_party/rust/crates/clap/src/builder/
Darg.rs2225 pub fn next_line_help(self, yes: bool) -> Self { in next_line_help() method
Dcommand.rs1175 pub fn next_line_help(self, yes: bool) -> Self { in next_line_help() method
/third_party/rust/crates/clap/
DCHANGELOG.md584 - *(help)* When short help is long enough to activate `next_line_help`, don't add blank lines (#413…