From 44473d785e435373350bc6b3253eec104c05b404 Mon Sep 17 00:00:00 2001 From: Michal Halenka Date: Wed, 8 Aug 2018 14:12:55 +0200 Subject: Add doctl autocompletion (#6501) --- plugins/doctl/doctl.plugin.zsh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 plugins/doctl/doctl.plugin.zsh (limited to 'plugins/doctl') 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 -- cgit v1.2.3-70-g09d2 From c6b68707f95faabb31fcaabf55f5d78abc64fb19 Mon Sep 17 00:00:00 2001 From: Erwan ROUSSEL Date: Fri, 26 Oct 2018 17:05:50 +0200 Subject: doctl: add README (#7346) --- plugins/doctl/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 plugins/doctl/README.md (limited to 'plugins/doctl') diff --git a/plugins/doctl/README.md b/plugins/doctl/README.md new file mode 100644 index 000000000..a81e90b0a --- /dev/null +++ b/plugins/doctl/README.md @@ -0,0 +1,9 @@ +# Doctl + +This plugin provides completion for [Doctl](https://github.com/digitalocean/doctl). + +To use it add doctl to the plugins array in your zshrc file. + +```bash +plugins=(... doctl) +``` -- cgit v1.2.3-70-g09d2