From 6855bebe6d3954c77f71d7d0dd5a2bb2f7f55733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20C=2E=20Brand=C3=A3o?= <62272513+GabrielBrandao1618@users.noreply.github.com> Date: Sun, 28 Jul 2024 11:12:49 -0300 Subject: [PATCH] feat(completion): remove powershell completion shell Co-authored-by: Eduardo Rodrigues --- src/action/completion.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/action/completion.rs b/src/action/completion.rs index 3cf9d3e..4ff08bb 100644 --- a/src/action/completion.rs +++ b/src/action/completion.rs @@ -21,7 +21,6 @@ fn get_shell_by_name(shell_name: &str) -> Option { "zsh" => Some(Shell::Zsh), "bash" => Some(Shell::Bash), "fish" => Some(Shell::Fish), - "powershell" => Some(Shell::PowerShell), "elvish" => Some(Shell::Elvish), _ => None, }