summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2022-04-03 18:33:57 +0200
committerMikael Magnusson <mikachu@gmail.com>2022-04-03 18:33:57 +0200
commit76b573fcbd3f8b6345bee945ad7f43a5c23ac74f (patch)
tree2f4486d8ceb624f15628cb1801cb7b0bc30b0267 /Completion/Unix/Command
parent9eda39735430549f2beebc94282fee90b4fb552c (diff)
downloadzsh-76b573fcbd3f8b6345bee945ad7f43a5c23ac74f.tar.gz
zsh-76b573fcbd3f8b6345bee945ad7f43a5c23ac74f.zip
49961: _adb: handle exec-out like shell
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r--Completion/Unix/Command/_adb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_adb b/Completion/Unix/Command/_adb
index 1375813bb..9c0118bb7 100644
--- a/Completion/Unix/Command/_adb
+++ b/Completion/Unix/Command/_adb
@@ -43,6 +43,7 @@ _adb() {
"disconnect"
"emu"
"enable-verity"
+ "exec-out"
"forward"
"get-devpath"
"get-serialno"
@@ -109,7 +110,7 @@ _adb_dispatch_command () {
fi
case ${curcontext} in
- (*:adb-shell:)
+ (*:adb-shell:|*:adb-exec-out:)
(( $+functions[_adb_dispatch_shell] )) && _adb_dispatch_shell
;;
(*:adb-backup:)