Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH 1/8: _adb: handle exec-out like shell
- X-seq: zsh-workers 49961
- From: Mikael Magnusson <mikachu@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: PATCH 1/8: _adb: handle exec-out like shell
- Date: Sun, 3 Apr 2022 17:50:12 +0200
- Archived-at: <https://zsh.org/workers/49961>
- List-id: <zsh-workers.zsh.org>
---
Completion/Unix/Command/_adb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Completion/Unix/Command/_adb b/Completion/Unix/Command/_adb
index 1375813bb2..9c0118bb72 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:)
--
2.15.1
Messages sorted by:
Reverse Date,
Date,
Thread,
Author