add elvish and powershell to unimplemented shells

This commit is contained in:
Terts Diepraam
2023-12-08 11:45:08 +01:00
parent ba7a40a5f0
commit 675bbb95c8
+1 -1
View File
@@ -31,7 +31,7 @@ pub enum ValueHint {
pub fn render(c: &Command, shell: &str) -> String {
match shell {
"fish" => fish::render(c),
"sh" | "zsh" | "bash" | "csh" => panic!("shell '{shell}' completion is not supported yet!"),
"sh" | "zsh" | "bash" | "csh" | "elvish" | "powershell" => panic!("shell '{shell}' completion is not supported yet!"),
_ => panic!("unknown shell '{shell}'!"),
}
}