diff options
author | Robby Russell <robby@planetargon.com> | 2013-07-23 07:23:32 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-07-23 07:23:32 -0700 |
commit | a256f7a88e7eb560b92442683ed631f499b09412 (patch) | |
tree | 9993b9e96aef32d9109ee34770b4ce1957de2f90 /plugins | |
parent | 2cc4801bd25a619cae8b41d698ff0489f7d629c3 (diff) | |
parent | b456541cc392e79ce7b8b30f0cba98f2796ed9a4 (diff) | |
download | zsh-a256f7a88e7eb560b92442683ed631f499b09412.tar.gz zsh-a256f7a88e7eb560b92442683ed631f499b09412.tar.bz2 zsh-a256f7a88e7eb560b92442683ed631f499b09412.zip |
Merge pull request #1993 from zvirusz/patch-2
In capistrano completion show also tasks without description
Diffstat (limited to 'plugins')
-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 |