add autocomplete for adb -s option (#6121)

master
kg 8 years ago committed by Robby Russell
parent e273cf004e
commit 2af2d1aa31
  1. 2
      plugins/adb/README.md
  2. 11
      plugins/adb/_adb

@ -1,7 +1,7 @@
# adb autocomplete plugin
* Adds autocomplete options for all adb commands.
* Add autocomplete for `adb -s`
## Requirements

@ -43,11 +43,20 @@ local expl
local -a pkgs installed_pkgs
_arguments \
'-s[devices]:specify device:->specify_device' \
'*:: :->subcmds' && return 0
case "$state" in
specify_device)
_values 'devices' $(adb devices|awk 'NR>1&& $1 ~ /^[a-zA-Z0-9].*$/ \
{printf "%s[Device_%d:%s] ",$1,++i,$2 }')
return
;;
esac
if (( CURRENT == 1 )); then
_describe -t commands "adb subcommand" _1st_arguments
return
fi
_files
_files
Loading…
Cancel
Save