Update shell.rs

Updated the link to the module.
This commit is contained in:
Alexis Opolka 2025-03-07 19:41:21 +01:00 committed by GitHub
parent 684e450ef5
commit cc1187e259
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,7 +14,7 @@ impl Display for Shell {
Self::Fish => "fish",
Self::Elvish => "elvish",
Self::Nushell => "nushell",
Self::PowerShell => "powershell",
Self::Powershell => "powershell",
};
write!(f, "{s}")
@ -37,7 +37,7 @@ impl Runnable for Input {
Shell::Fish => include_str!("../../shell/navi.plugin.fish"),
Shell::Elvish => include_str!("../../shell/navi.plugin.elv"),
Shell::Nushell => include_str!("../../shell/navi.plugin.nu"),
Shell::PowerShell => include_str!("../../shell/navi.plugin.ps1"),
Shell::PowerShell => include_str!("../../shell/navi.plugin.psm1"),
};
println!("{content}");