diff options
author | Jaehyun Shin <keepcosmos@gmail.com> | 2016-12-18 07:03:02 +0900 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-12-17 23:03:02 +0100 |
commit | e66bf038c7a9297afbccc264b802d50d43f2515a (patch) | |
tree | ecbe36d861b5c4dd24b1d67c19bc66c109e3f430 /plugins | |
parent | c6de77ca992648ea2be7beef5f35f5ce9f0151a9 (diff) | |
download | zsh-e66bf038c7a9297afbccc264b802d50d43f2515a.tar.gz zsh-e66bf038c7a9297afbccc264b802d50d43f2515a.tar.bz2 zsh-e66bf038c7a9297afbccc264b802d50d43f2515a.zip |
Add heroku `features` command to completion (#5667)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/heroku/_heroku | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/heroku/_heroku b/plugins/heroku/_heroku index fd72e530e..878d3ce1b 100644 --- a/plugins/heroku/_heroku +++ b/plugins/heroku/_heroku @@ -31,6 +31,10 @@ _1st_arguments=( "domains\:add":"add a custom domain to an app" "domains\:remove":"remove a custom domain from an app" "domains\:clear":"remove all custom domains from an app" + "features":"list available app features" + "features\:disable":"disables a feature" + "features\:enable":"enables an feature" + "features\:info":"displays additional information about feature" "help":"list available commands or display help for a specific command" "keys":"display keys for the current user" "keys\:add":"add a key for the current user" @@ -144,5 +148,4 @@ _arguments \ '(--app)--app[the app name]' \ '(--remote)--remote[the remote name]' \ '(--help)--help[help about the current command]' \ - && return 0 - + && return 0 |