zsh-workers
 help / color / mirror / code / Atom feed
* PATCH: completion for adb backup
@ 2018-11-12  2:06 Oliver Kiddle
  0 siblings, 0 replies; only message in thread
From: Oliver Kiddle @ 2018-11-12  2:06 UTC (permalink / raw)
  To: Zsh workers

This expands adb completion to also cover options to adb backup.
There's also a separate typo correction.

Oliver

diff --git a/Completion/Unix/Command/_adb b/Completion/Unix/Command/_adb
index 776a03cbc..75a447dfc 100644
--- a/Completion/Unix/Command/_adb
+++ b/Completion/Unix/Command/_adb
@@ -112,6 +112,9 @@ _adb_dispatch_command () {
     (*:adb-shell:)
       (( $+functions[_adb_dispatch_shell] )) && _adb_dispatch_shell
       ;;
+    (*:adb-backup:)
+      (( $+functions[_adb_dispatch_backup] )) && _adb_dispatch_backup
+      ;;
     (*:adb-connect:|*:adb-disconnect:)
       (( $+functions[_adb_dispatch_connection_handling] )) && _adb_dispatch_connection_handling
       ;;
@@ -191,6 +194,18 @@ _adb_dispatch_shell () {
   esac
 }
 
+(( $+functions[_adb_dispatch_backup] )) ||
+_adb_dispatch_backup() {
+  _arguments \
+    '-f[specify backup file]:backup file:_files' \
+    '-apk[backup .apk files]' '!(-apk)-noapk' \
+    '-obb[backup .obb files]' '!(-obb)-noobb' \
+    '-shared[backup shared storage]' '!(-shared)-noshared' \
+    '-all[backup all installed apps]' \
+    '-nosystem[include system apps when backing up all apps]' '!(-nosystem)-system' \
+    '*:package name:_adb_installed_packages'
+}
+
 (( $+functions[_adb_pm_list] )) ||
 _adb_pm_list () {
   case ${words[4]} in
@@ -298,7 +313,7 @@ _adb_package_manager_handler () {
     (getInstallLocation)
       ;;
     (*)
-      _wanted pm_argument expl 'pm argument' compadd list path install unistall enable disable setInstallLocation getInstallLocation
+      _wanted pm_argument expl 'pm argument' compadd list path install uninstall enable disable setInstallLocation getInstallLocation
       ;;
   esac
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-11-12  2:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-12  2:06 PATCH: completion for adb backup Oliver Kiddle

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).