From 403b4babbcd90094d9a7db43087027af011b0c83 Mon Sep 17 00:00:00 2001 From: Marius Stuparu Date: Wed, 4 Oct 2017 20:47:55 +0100 Subject: [PATCH] Add autocompletion for kops --- plugins/kops/kops.plugin.zsh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 plugins/kops/kops.plugin.zsh diff --git a/plugins/kops/kops.plugin.zsh b/plugins/kops/kops.plugin.zsh new file mode 100644 index 000000000..5cb0f146e --- /dev/null +++ b/plugins/kops/kops.plugin.zsh @@ -0,0 +1,7 @@ +# Autocompletion for kops +# +# Author: https://github.com/mstuparu + +if [ $commands[kops] ]; then + source <(kops completion zsh) +fi