diff options
author | Kirill Pinchuk <cybergrind@gmail.com> | 2019-08-19 19:12:53 +0300 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-08-19 18:12:53 +0200 |
commit | 1908f7bddcacdfb18a5a4b1c883f0c405d1660a8 (patch) | |
tree | 31a2809afa113a73962189afbfe54d698ad57a1b /plugins/fabric/_fab | |
parent | 8634d9542a974ce4700ca14c3d3bc410945cc20a (diff) | |
download | zsh-1908f7bddcacdfb18a5a4b1c883f0c405d1660a8.tar.gz zsh-1908f7bddcacdfb18a5a4b1c883f0c405d1660a8.tar.bz2 zsh-1908f7bddcacdfb18a5a4b1c883f0c405d1660a8.zip |
fabric: support fabric 2+ completion (#8010)
Diffstat (limited to 'plugins/fabric/_fab')
-rw-r--r-- | plugins/fabric/_fab | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/fabric/_fab b/plugins/fabric/_fab index 9628e1224..4c2e61306 100644 --- a/plugins/fabric/_fab +++ b/plugins/fabric/_fab @@ -5,7 +5,7 @@ local curcontext=$curcontext state line declare -A opt_args declare target_list -target_list=(`fab --shortlist 2>/dev/null`) +target_list=(`fab --shortlist 2>/dev/null || fab --complete 2>/dev/null`) _targets() { _describe -t commands "fabric targets" target_list |