1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-04 10:41:11 +02:00

16568: get listing of entire directory for approximation and other purposes.

This commit is contained in:
Clint Adams 2002-02-05 18:10:52 +00:00
parent 6b932f3cf7
commit aa9b40fb5d
2 changed files with 4 additions and 7 deletions

View file

@ -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.

View file

@ -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:#*/})