mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-23 04:30:24 +02:00
16568: get listing of entire directory for approximation and other purposes.
This commit is contained in:
parent
6b932f3cf7
commit
aa9b40fb5d
2 changed files with 4 additions and 7 deletions
|
@ -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:#*/})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue