summaryrefslogtreecommitdiff
path: root/plugins/helm
diff options
context:
space:
mode:
authorVincent <github@fleeto.us>2017-11-06 22:49:27 +0800
committerRobby Russell <robby@planetargon.com>2017-11-06 06:49:27 -0800
commit9edb3fcebac250e12850530222a10a13d513f03f (patch)
treea7bc649f7313933c7d5d6cddf9ff1a0113820b48 /plugins/helm
parentb53fbc36c15d5d2f65ec1779cec9e05b533337b6 (diff)
downloadzsh-9edb3fcebac250e12850530222a10a13d513f03f.tar.gz
zsh-9edb3fcebac250e12850530222a10a13d513f03f.tar.bz2
zsh-9edb3fcebac250e12850530222a10a13d513f03f.zip
Added: Helm plugins (#6265)
Diffstat (limited to 'plugins/helm')
-rw-r--r--plugins/helm/helm.plugin.zsh7
1 files changed, 7 insertions, 0 deletions
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