feat: partial nushell support

This commit is contained in:
iff 2023-07-31 15:06:30 +02:00
parent 48062142c6
commit 86ae6a6fb4
3 changed files with 16 additions and 1 deletions

View file

@ -27,6 +27,7 @@ fn last_command(shell: &str) -> String {
}
"zsh" => last_command,
"fish" => last_command,
"nu" => last_command,
_ => {
eprintln!("Unsupported shell: {}", shell);
exit(1);