diff options
Diffstat (limited to 'src/args.rs')
-rw-r--r-- | src/args.rs | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/args.rs b/src/args.rs index 558a0b1..9044802 100644 --- a/src/args.rs +++ b/src/args.rs @@ -125,12 +125,21 @@ pub struct Args { // TODO implement // TODO automatically with -C or recursion or decide that this is a bad GNU feature #[cfg(feature = "full")] - #[clap(short = 'w', long, overrides_with = "print_directory", overrides_with = "no_print_directory")] + #[clap( + short = 'w', + long, + overrides_with = "print_directory", + overrides_with = "no_print_directory" + )] pub print_directory: bool, /// Do not print the working directory when starting, even when running with -C or recursively. #[cfg(feature = "full")] - #[clap(long, overrides_with = "print_directory", overrides_with = "no_print_directory")] + #[clap( + long, + overrides_with = "print_directory", + overrides_with = "no_print_directory" + )] pub no_print_directory: bool, /// Target names or macro definitions. |