Skip to content

Commit

Permalink
fixed issue where completions would interpret tag as $(tag) and cal…
Browse files Browse the repository at this point in the history
…l it (#31)
  • Loading branch information
lmburns authored Aug 5, 2021
1 parent dbf25d8 commit fa00232
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/opt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ pub struct SearchOpts {
/// If provided output will be raw so that it can be easily piped to other commands
pub raw: bool,
#[clap(long, short)]
/// If set to `true` all entries containing any of provided tags will be returned
/// If set to 'true' all entries containing any of provided tags will be returned
pub any: bool,
}

Expand Down Expand Up @@ -147,7 +147,7 @@ pub enum Command {
Rm(RmOpts),
/// Clears all tags of the files that match the provided pattern.
Clear(ClearOpts),
/// Searches for files that have all of the provided `tags`.
/// Searches for files that have all of the provided 'tags'.
Search(SearchOpts),
/// Copies tags from the specified file to files that match a pattern.
Cp(CpOpts),
Expand Down

0 comments on commit fa00232

Please sign in to comment.