diff options
author | Fotos Georgiadis <gfotos@gmail.com> | 2020-05-23 22:35:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-23 22:35:15 +0200 |
commit | 6b5c8728360b1592e4321b8a4b00d8c8b49e64fe (patch) | |
tree | 4a5518a1722b2563f60497474661674ff0cf002a /plugins/terraform/_terraform | |
parent | dd1df902525c485e575719ef9971f97f3e64a02b (diff) | |
download | zsh-6b5c8728360b1592e4321b8a4b00d8c8b49e64fe.tar.gz zsh-6b5c8728360b1592e4321b8a4b00d8c8b49e64fe.tar.bz2 zsh-6b5c8728360b1592e4321b8a4b00d8c8b49e64fe.zip |
terraform: add fmt -recursive flag autocompletion (#8880)
Diffstat (limited to 'plugins/terraform/_terraform')
-rw-r--r-- | plugins/terraform/_terraform | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/terraform/_terraform b/plugins/terraform/_terraform index 5b3655801..e4298f2ab 100644 --- a/plugins/terraform/_terraform +++ b/plugins/terraform/_terraform @@ -77,7 +77,8 @@ __fmt() { '-list=[(true) List files whose formatting differs (always false if using STDIN)]' \ '-write=[(true) Write result to source file instead of STDOUT (always false if using STDIN or -check)]' \ '-diff=[(false) Display diffs of formatting changes]' \ - '-check=[(false) Check if the input is formatted. Exit status will be 0 if all input is properly formatted and non-zero otherwise.]' + '-check=[(false) Check if the input is formatted. Exit status will be 0 if all input is properly formatted and non-zero otherwise.]' \ + '-recursive=[(false) Also process files in subdirectories. By default, only the given directory (or current directory) is processed.]' } __get() { |