diff options
author | Andrey Janzen <andrey@janzen.su> | 2013-07-23 15:52:44 +0700 |
---|---|---|
committer | Andrey Janzen <andrey@janzen.su> | 2013-07-23 15:52:44 +0700 |
commit | b456541cc392e79ce7b8b30f0cba98f2796ed9a4 (patch) | |
tree | 9993b9e96aef32d9109ee34770b4ce1957de2f90 /plugins/capistrano | |
parent | 2cc4801bd25a619cae8b41d698ff0489f7d629c3 (diff) | |
download | zsh-b456541cc392e79ce7b8b30f0cba98f2796ed9a4.tar.gz zsh-b456541cc392e79ce7b8b30f0cba98f2796ed9a4.tar.bz2 zsh-b456541cc392e79ce7b8b30f0cba98f2796ed9a4.zip |
In capistrano completion show also tasks without description
Diffstat (limited to 'plugins/capistrano')
-rw-r--r-- | plugins/capistrano/_capistrano | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/capistrano/_capistrano b/plugins/capistrano/_capistrano index 1002dad96..3cadf3d54 100644 --- a/plugins/capistrano/_capistrano +++ b/plugins/capistrano/_capistrano @@ -4,7 +4,7 @@ if [[ -f config/deploy.rb || -f Capfile ]]; then if [[ ! -f .cap_tasks~ || config/deploy.rb -nt .cap_tasks~ ]]; then echo "\nGenerating .cap_tasks~..." > /dev/stderr - cap --tasks | grep '#' | cut -d " " -f 2 > .cap_tasks~ + cap -v --tasks | grep '#' | cut -d " " -f 2 > .cap_tasks~ fi compadd `cat .cap_tasks~` fi |