diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2023-03-09 09:13:31 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-09 09:13:31 +0000 |
| commit | 991461f42310f73737d6229afd46276e3834f166 (patch) | |
| tree | d31dfa059f13106005a347ccf00cc840ee04d992 | |
| parent | Fix before/after combined with limit (#770) (diff) | |
| download | atuin-991461f42310f73737d6229afd46276e3834f166.zip | |
Allow specifying fulltext as well as full-text (#771)
| -rw-r--r-- | atuin-client/src/settings.rs | 1 |
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")] |
