From 9edb3fcebac250e12850530222a10a13d513f03f Mon Sep 17 00:00:00 2001 From: Vincent Date: Mon, 6 Nov 2017 22:49:27 +0800 Subject: [PATCH] Added: Helm plugins (#6265) --- plugins/helm/helm.plugin.zsh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 plugins/helm/helm.plugin.zsh diff --git a/plugins/helm/helm.plugin.zsh b/plugins/helm/helm.plugin.zsh new file mode 100644 index 00000000..78499c15 --- /dev/null +++ b/plugins/helm/helm.plugin.zsh @@ -0,0 +1,7 @@ +# Autocompletion for helm. +# +# Copy from kubectl : https://github.com/pstadler + +if [ $commands[helm] ]; then + source <(helm completion zsh) +fi