aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2023-03-09 09:13:31 +0000
committerGitHub <noreply@github.com>2023-03-09 09:13:31 +0000
commit991461f42310f73737d6229afd46276e3834f166 (patch)
treed31dfa059f13106005a347ccf00cc840ee04d992
parentFix before/after combined with limit (#770) (diff)
downloadatuin-991461f42310f73737d6229afd46276e3834f166.zip
Allow specifying fulltext as well as full-text (#771)
-rw-r--r--atuin-client/src/settings.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/atuin-client/src/settings.rs b/atuin-client/src/settings.rs
index a3d9d019..aab2f4a3 100644
--- a/atuin-client/src/settings.rs
+++ b/atuin-client/src/settings.rs
@@ -24,6 +24,7 @@ pub enum SearchMode {
Prefix,
#[serde(rename = "fulltext")]
+ #[clap(aliases = &["fulltext"])]
FullText,
#[serde(rename = "fuzzy")]