From a13db3b3387eff3e44fd18505b2b58942f70a483 Mon Sep 17 00:00:00 2001 From: Vincent Date: Thu, 24 Aug 2017 10:24:47 +0800 Subject: [PATCH] Added: Helm plugins --- 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 000000000..78499c15d --- /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