···2727 /// Cleans destination of uncleanly-copied files.
2828 Clean(cmd::clean::Args),
29293030+ /// Filter tracks to copy over to a destination.
3031 Filter(cmd::filter::Args),
3132}
+2-2
src/cmd/filter.rs
···6677#[derive(ClapArgs)]
88pub struct Args {
99- /// Path where to store tracksync's database, as well as music files.
99+ /// Path where tracksync database is stored.
1010 #[arg(long)]
1111 pub destination: Option<String>,
1212···16161717 /// Read filtering code from the specified file path, and store it in the database overwriting previously
1818 /// stored filters.
1919- /// This option will not open $EDITOR.
1919+ /// If this flag is provided, $EDITOR will not be open: omit this flag to edit your filters in-place.
2020 #[arg(long)]
2121 pub file: Option<String>,
2222}