From 675bbb95c85e4d0c05731f726de6ed0738ebe0bc Mon Sep 17 00:00:00 2001 From: Terts Diepraam Date: Fri, 8 Dec 2023 11:45:08 +0100 Subject: [PATCH] add elvish and powershell to unimplemented shells --- complete/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/complete/src/lib.rs b/complete/src/lib.rs index 2be302e..949b224 100644 --- a/complete/src/lib.rs +++ b/complete/src/lib.rs @@ -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}'!"), } }