ohmyzsh/plugins/adb/_adb
Volodymyr 6273d430f2 add '-s' attribute
Very ofter a want use '-s' for run command for the specific device.
But in the previous version when I input '-s' I can not show hint about command. (I fixed this)
2017-01-13 12:47:11 +02:00

64 lines
1.9 KiB
Text

#compdef adb
#autoload
# in order to make this work, you will need to have the android adb tools
# adb zsh completion, based on homebrew completion
local -a _1st_arguments
_1st_arguments=(
'bugreport:return all information from the device that should be included in a bug report.'
'connect:connect to a device via TCP/IP Port 5555 is default.'
'devices:list all connected devices'
'disconnect:disconnect from a TCP/IP device. Port 5555 is default.'
'emu:run emulator console command'
'forward:forward socket connections'
'help:show the help message'
'install:push this package file to the device and install it'
'jdwp:list PIDs of processes hosting a JDWP transport'
'kill-server:kill the server if it is running'
'logcat:view device log'
'pull:copy file/dir from device'
'push:copy file/dir to device'
'reboot:reboots the device, optionally into the bootloader or recovery program'
'reboot-bootloader:reboots the device into the bootloader'
'remount:remounts the partitions on the device read-write'
'root:restarts the adbd daemon with root permissions'
'sideload:push a ZIP to device and install it'
'shell:run remote shell interactively'
'sync:copy host->device only if changed (-l means list but dont copy)'
'start-server:ensure that there is a server running'
'tcpip:restart host adb in tcpip mode'
'uninstall:remove this app package from the device'
'version:show version num'
'wait-for-device:block until device is online'
)
local -a serial
serial=(
'-s:run command only for the selected device by device code or ip:port from adb devices'
)
local expl
local -a pkgs installed_pkgs
_arguments \
'*:: :->subcmds' && return 0
if ((CURRENT == 1)) then
_describe -t commands "adb subcommand" _1st_arguments
_describe -t commands "adb subcommand" serial
return
fi
if ((CURRENT == 2)) then
return
fi
if ((CURRENT == 3)) then
_describe -t commands "adb subcommand" _1st_arguments
return
fi
_files