mirror of
https://github.com/atuinsh/atuin.git
synced 2025-07-07 13:15:09 +00:00
This reverts commit 9d816d16db
.
This commit is contained in:
parent
95c29b7859
commit
336447e7f6
9 changed files with 9 additions and 9 deletions
|
@ -7,7 +7,7 @@ exclude = ["ui/backend"]
|
|||
[workspace.package]
|
||||
version = "18.5.0-beta.2"
|
||||
authors = ["Ellie Huxtable <ellie@atuin.sh>"]
|
||||
rust-version = "1.85.1"
|
||||
rust-version = "1.86"
|
||||
license = "MIT"
|
||||
homepage = "https://atuin.sh"
|
||||
repository = "https://github.com/atuinsh/atuin"
|
||||
|
|
|
@ -74,7 +74,7 @@ impl Cmd {
|
|||
store.delete(&name).await?;
|
||||
} else {
|
||||
eprintln!("Cannot delete '{name}': Alias not set.");
|
||||
};
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@ impl Cmd {
|
|||
store.delete(&name).await?;
|
||||
} else {
|
||||
eprintln!("Cannot delete '{name}': Var not set.");
|
||||
};
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
@ -606,7 +606,7 @@ impl Cmd {
|
|||
format,
|
||||
} => {
|
||||
let last = db.last().await?;
|
||||
let last = last.as_ref().map(std::slice::from_ref).unwrap_or_default();
|
||||
let last = last.as_slice();
|
||||
let tz = timezone.unwrap_or(settings.timezone);
|
||||
print_list(
|
||||
last,
|
||||
|
|
|
@ -100,7 +100,7 @@ $env.config = (
|
|||
Shell::Xonsh => {
|
||||
xonsh::init_static(self.disable_up_arrow, self.disable_ctrl_r);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
async fn dotfiles_init(&self, settings: &Settings) -> Result<()> {
|
||||
|
|
|
@ -278,7 +278,7 @@ impl Cmd {
|
|||
tz,
|
||||
);
|
||||
}
|
||||
};
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
|
|
@ -508,7 +508,7 @@ impl State {
|
|||
self.scroll_down(scroll_len);
|
||||
}
|
||||
_ => {}
|
||||
};
|
||||
}
|
||||
|
||||
InputAction::Continue
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
fenix.packages.${system}.fromToolchainFile
|
||||
{
|
||||
file = ./rust-toolchain.toml;
|
||||
sha256 = "sha256-Hn2uaQzRLidAWpfmRwSRdImifGUCAb9HeAqTYFXWeQk=";
|
||||
sha256 = "sha256-X/4ZBHO3iW0fOenQ3foEvscgAPJYl2abspaBThDOukI=";
|
||||
};
|
||||
in
|
||||
pkgs.makeRustPlatform {
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
[toolchain]
|
||||
channel = "1.85.1"
|
||||
channel = "1.86"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue