summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMichal Halenka <michal.halenka@gmail.com>2018-08-08 14:12:55 +0200
committerMarc Cornellà <marc.cornella@live.com>2018-08-08 14:12:55 +0200
commit44473d785e435373350bc6b3253eec104c05b404 (patch)
tree5d4503e8a8bce151c3f0a7eebe89659dfc6eb5d5 /plugins
parent91d55dce11cc975309cd7dc8955c51f82de8548c (diff)
downloadzsh-44473d785e435373350bc6b3253eec104c05b404.tar.gz
zsh-44473d785e435373350bc6b3253eec104c05b404.tar.bz2
zsh-44473d785e435373350bc6b3253eec104c05b404.zip
Add doctl autocompletion (#6501)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/doctl/doctl.plugin.zsh9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/doctl/doctl.plugin.zsh b/plugins/doctl/doctl.plugin.zsh
new file mode 100644
index 000000000..d23ed085c
--- /dev/null
+++ b/plugins/doctl/doctl.plugin.zsh
@@ -0,0 +1,9 @@
+# Autocompletion for doctl, the command line tool for DigitalOcean service
+#
+# doctl project: https://github.com/digitalocean/doctl
+#
+# Author: https://github.com/HalisCz
+
+if [ $commands[doctl] ]; then
+ source <(doctl completion zsh)
+fi