diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-02-15 19:29:39 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-15 19:29:39 +0000 |
| commit | 0d31499a620c5c83df9d14c07d310d73e9c9df47 (patch) | |
| tree | deb2160104fa834f7988b987b22e954455f2c0ec | |
| parent | feat: support syncing aliases (#1721) (diff) | |
| download | atuin-0d31499a620c5c83df9d14c07d310d73e9c9df47.zip | |
fix: fish init (#1725)
| -rw-r--r-- | atuin/src/command/client/init/fish.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/atuin/src/command/client/init/fish.rs b/atuin/src/command/client/init/fish.rs index 00913a90..9274b350 100644 --- a/atuin/src/command/client/init/fish.rs +++ b/atuin/src/command/client/init/fish.rs @@ -2,7 +2,7 @@ use atuin_config::store::AliasStore; use eyre::Result; pub async fn init(store: AliasStore, disable_up_arrow: bool, disable_ctrl_r: bool) -> Result<()> { - let base = include_str!("../../../shell/atuin.zsh"); + let base = include_str!("../../../shell/atuin.fish"); println!("{base}"); |
