Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: _ssh (scp)
- X-seq: zsh-workers 16553
- From: Clint Adams <clint@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: PATCH: _ssh (scp)
- Date: Mon, 4 Feb 2002 12:59:27 -0500
- Cc: david@xxxxxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
So this is based on a patch from David Engel for something resembling
the current 4.0.x CVS. Is it necessary to provide the echo behavior
as well, or can we safely assume that everything can do ls -d1F these
days?
Index: Completion/Unix/Command/_ssh
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_ssh,v
retrieving revision 1.5
diff -u -r1.5 _ssh
--- Completion/Unix/Command/_ssh 2002/01/16 16:29:52 1.5
+++ Completion/Unix/Command/_ssh 2002/02/04 17:25:18
@@ -3,11 +3,16 @@
_remote_files () {
# This is extremely simple-minded; could parse "ls -F" output to do
# colorings and LIST_TYPES and so on, but I'm just not that ambitious.
- local expl
+ local expl remfiles
if zstyle -T ":completion:${curcontext}:" remote-access; then
+ remfiles=(${(f)"$(ssh -a -x ${words[CURRENT]%:*} ls -d1F ${words[CURRENT]#*:}\*)"})
+
_wanted files expl 'remote files' \
- compadd $(ssh -a -x ${words[CURRENT]%:*} echo ${words[CURRENT]#*:}\*)
+ compadd ${${remfiles:#*/}/[*=@](#e)/}
+
+ _wanted dirs expl 'remote directories' \
+ compadd -S/ ${${(M)remfiles:#*/}/\\/(#e)/}
else
_message 'remote files'
fi
Messages sorted by:
Reverse Date,
Date,
Thread,
Author