about summary refs log tree commit diff
path: root/Completion/Unix/Command/_adb
diff options
context:
space:
mode:
authorWGH <wgh@torlan.ru>2018-02-01 17:08:52 +0300
committerOliver Kiddle <opk@zsh.org>2018-02-07 20:52:28 +0100
commit0c324124d0c9837cdd3b43a18ec7d22fcd5e9012 (patch)
tree456a1506af2273b2330a16782c894083d9cf7e65 /Completion/Unix/Command/_adb
parentffacc9576683aa16a5f48f5b99a7a3c282c6159f (diff)
downloadzsh-0c324124d0c9837cdd3b43a18ec7d22fcd5e9012.tar.gz
zsh-0c324124d0c9837cdd3b43a18ec7d22fcd5e9012.tar.xz
zsh-0c324124d0c9837cdd3b43a18ec7d22fcd5e9012.zip
42336: force single column output when getting filenames with adb ls command
Diffstat (limited to 'Completion/Unix/Command/_adb')
-rw-r--r--Completion/Unix/Command/_adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_adb b/Completion/Unix/Command/_adb
index 6b56d1748..f0ffdb5a4 100644
--- a/Completion/Unix/Command/_adb
+++ b/Completion/Unix/Command/_adb
@@ -480,7 +480,7 @@ _adb_remote_folder () {
     pref=${pref%/*}/
   fi
   # yes, this ls is sickening to look at, but android doesn't have printf or find
-  files=(${${(f)"$(adb ${=ADB_DEVICE_SPECIFICATION} shell 'ls -d 2> /dev/null '$pref'*/ '$pref'*')"}%$'\r'})
+  files=(${${(f)"$(adb ${=ADB_DEVICE_SPECIFICATION} shell 'ls -1d 2> /dev/null '$pref'*/ '$pref'*')"}%$'\r'})
   dirs=(${${(M)files:#*/}%/})
   files=(${${files:|dirs}:#*\*(/|)})
   _adb_device_available && \