summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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:#*/})