From 299df7dd015afc97f996b3664b3a5f56c4ba0e24 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Wed, 13 Nov 2024 20:34:47 -0700 Subject: fix attribute formatting --- src/args.rs | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src') 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. -- cgit v1.2.3