about summary refs log tree commit diff
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2002-02-05 18:10:52 +0000
committerClint Adams <clint@users.sourceforge.net>2002-02-05 18:10:52 +0000
commitaa9b40fb5dc8ecd4b32fde782d69ff477cc856d8 (patch)
tree92f86decd072934c18d20ab605707c7bd9fbd19b
parent6b932f3cf73c24c14bd25f35575ff9a6f0218fda (diff)
downloadzsh-aa9b40fb5dc8ecd4b32fde782d69ff477cc856d8.tar.gz
zsh-aa9b40fb5dc8ecd4b32fde782d69ff477cc856d8.tar.xz
zsh-aa9b40fb5dc8ecd4b32fde782d69ff477cc856d8.zip
16568: get listing of entire directory for approximation and other purposes.
-rw-r--r--ChangeLog3
-rw-r--r--Completion/Unix/Command/_ssh8
2 files changed, 4 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index ff790d135..36e3ea576 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2002-02-04  Clint Adams  <clint@zsh.org>
 
+	* 16568: Completion/Unix/Command/_ssh: get listing of
+	entire directory for approximation and other purposes.
+
 	* 16566: Completion/Unix/Command/_ssh: show ls -F
 	classifiers as display strings.
 
diff --git a/Completion/Unix/Command/_ssh b/Completion/Unix/Command/_ssh
index 954a8b391..672031c36 100644
--- a/Completion/Unix/Command/_ssh
+++ b/Completion/Unix/Command/_ssh
@@ -5,13 +5,7 @@ _remote_files () {
   local expl remfiles remdispf remdispd
 
   if zstyle -T ":completion:${curcontext}:" remote-access; then
-    if [[ $options[globdots] == "on" ]] && [[ "$PREFIX" == */ || -z "$PREFIX" ]];
-    then
-      print ssh -a -x ${words[CURRENT]%:*} ls -a1F ${words[CURRENT]#*:}
-      remfiles=(${(f)"$(ssh -a -x ${words[CURRENT]%:*} ls -a1F ${words[CURRENT]#*:} 2>/dev/null)"})
-    else
-      remfiles=(${(f)"$(ssh -a -x ${words[CURRENT]%:*} ls -d1F ${words[CURRENT]#*:}\* 2>/dev/null)"})
-    fi
+    remfiles=(${(f)"$(ssh -a -x ${words[CURRENT]%:*} ls -d1F ${${${words[CURRENT]#*:}:h}/\\/(#e)/}/\* 2>/dev/null)"})
 
     remdispf=(${remfiles:#*/})
     remdispd=(${(M)remfiles:#*/})