diff options
| author | Mica White <botahamec@outlook.com> | 2026-03-28 14:40:30 -0400 |
|---|---|---|
| committer | Mica White <botahamec@outlook.com> | 2026-03-28 14:40:30 -0400 |
| commit | 2f71b45a753ff80cd9d7710be47b6777ed43e807 (patch) | |
| tree | 8f6de4f6f6a543b39550c6fb36e4f1f445620bb3 /src/lib.rs | |
| parent | c9d8448fcbc3e79668fc5d33bd4f1e33a3f3d25c (diff) | |
Fix autosave command
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -52,11 +52,11 @@ pub struct Config { } pub fn load_config() -> Result<Config, ConfyError> { - confy::load("git-autosave", None) + confy::load("git-autosave", "git-autosaved") } pub fn save_config(config: &Config) -> Result<(), ConfyError> { - confy::store("git-autosave", None, config) + confy::store("git-autosave", "git-autosaved", config) } pub fn init(repository: &Repository, config: Option<&mut Config>) -> Result<(), Error> { |
