diff options
| author | Clint Adams <clint@users.sourceforge.net> | 2004-04-14 14:54:13 +0000 |
|---|---|---|
| committer | Clint Adams <clint@users.sourceforge.net> | 2004-04-14 14:54:13 +0000 |
| commit | 255ed50eae1b6ced7375a9336d24168397d02d19 (patch) | |
| tree | 912d52274bf1532a6936f2a4e9ca3bb6b7b515df /Completion/Unix/Command/_rsync | |
| parent | Ingo Rohlfs: 19747: complete files/urls for svn cp and mv commands (diff) | |
| download | zsh-255ed50eae1b6ced7375a9336d24168397d02d19.tar zsh-255ed50eae1b6ced7375a9336d24168397d02d19.tar.gz zsh-255ed50eae1b6ced7375a9336d24168397d02d19.tar.bz2 zsh-255ed50eae1b6ced7375a9336d24168397d02d19.tar.lz zsh-255ed50eae1b6ced7375a9336d24168397d02d19.tar.xz zsh-255ed50eae1b6ced7375a9336d24168397d02d19.tar.zst zsh-255ed50eae1b6ced7375a9336d24168397d02d19.zip | |
* Jay Berkenbilt: 19769: Completion/Unix/Command/_rsync:
fix quoting for remote file completion, add -L to ls command.
Diffstat (limited to 'Completion/Unix/Command/_rsync')
| -rw-r--r-- | Completion/Unix/Command/_rsync | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_rsync b/Completion/Unix/Command/_rsync index 55fe18d27..533c30e9d 100644 --- a/Completion/Unix/Command/_rsync +++ b/Completion/Unix/Command/_rsync @@ -37,8 +37,8 @@ elif [[ -prefix 1 *: ]]; then if zstyle -T ":completion:${curcontext}:" remote-access; then slash=/ - remfiles=(${(f)"$(_call_program files ssh -a -x ${words[CURRENT]%:*} ls -d1F ${${${words[CURRENT -]#*:}:h}/${slash}(#e)/}/\* 2>/dev/null)"}) + remfiles=(${(f)"$(_call_program files ssh -a -x ${words[CURRENT]%:*} ls -d1FL "${${${words[CURRENT +]#*:}:h}/${slash}(#e)/}/\* 2>/dev/null")"}) remdispf=(${remfiles:#*/}) remdispd=(${(M)remfiles:#*/}) |
