Browse Source

fabric: support fabric 2+ completion (#8010)

Kirill Pinchuk 5 years ago
parent
commit
1908f7bddc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/fabric/_fab

+ 1 - 1
plugins/fabric/_fab

@@ -5,7 +5,7 @@ local curcontext=$curcontext state line
 declare -A opt_args
 declare -A opt_args
 
 
 declare target_list
 declare target_list
-target_list=(`fab --shortlist 2>/dev/null`)
+target_list=(`fab --shortlist 2>/dev/null || fab --complete 2>/dev/null`)
 
 
 _targets() {
 _targets() {
     _describe -t commands "fabric targets" target_list
     _describe -t commands "fabric targets" target_list