diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-05-14 10:23:05 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-14 10:23:05 +0700 |
| commit | 58f0bd61e6e7b1a10e7460d8fe39921909ac216e (patch) | |
| tree | 7ec3eebff65920d9ca51e596775b66bb5ff037bf /crates/atuin-client/src/settings.rs | |
| parent | chore(deps): bump base64 from 0.21.7 to 0.22.1 (#2017) (diff) | |
| download | atuin-58f0bd61e6e7b1a10e7460d8fe39921909ac216e.zip | |
fix: alias enable/enabled in settings (#2021)
Diffstat (limited to 'crates/atuin-client/src/settings.rs')
| -rw-r--r-- | crates/atuin-client/src/settings.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/atuin-client/src/settings.rs b/crates/atuin-client/src/settings.rs index ed1c0a29..98a40496 100644 --- a/crates/atuin-client/src/settings.rs +++ b/crates/atuin-client/src/settings.rs @@ -346,6 +346,7 @@ pub struct Preview { pub struct Daemon { /// Use the daemon to sync /// If enabled, requires a running daemon with `atuin daemon` + #[serde(alias = "enable")] pub enabled: bool, /// The daemon will handle sync on an interval. How often to sync, in seconds. |
