diff options
| author | Oliver Kiddle <opk@users.sourceforge.net> | 2002-09-03 19:05:27 +0000 |
|---|---|---|
| committer | Oliver Kiddle <opk@users.sourceforge.net> | 2002-09-03 19:05:27 +0000 |
| commit | 30aa9063e8163ac77e61caa32169e5c1f8d2e16b (patch) | |
| tree | ae3d2f4071412fe2d3d425b19eae88974e9a07b7 /Completion/Unix/Command | |
| parent | 17591: new _losetup and move _modutils and _valgrind to Linux directory (diff) | |
| download | zsh-30aa9063e8163ac77e61caa32169e5c1f8d2e16b.tar zsh-30aa9063e8163ac77e61caa32169e5c1f8d2e16b.tar.gz zsh-30aa9063e8163ac77e61caa32169e5c1f8d2e16b.tar.bz2 zsh-30aa9063e8163ac77e61caa32169e5c1f8d2e16b.tar.lz zsh-30aa9063e8163ac77e61caa32169e5c1f8d2e16b.tar.xz zsh-30aa9063e8163ac77e61caa32169e5c1f8d2e16b.tar.zst zsh-30aa9063e8163ac77e61caa32169e5c1f8d2e16b.zip | |
pass -F option through to ssh when getting remote files for scp completion
Diffstat (limited to 'Completion/Unix/Command')
| -rw-r--r-- | Completion/Unix/Command/_ssh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_ssh b/Completion/Unix/Command/_ssh index 692a9b5cf..bdd457266 100644 --- a/Completion/Unix/Command/_ssh +++ b/Completion/Unix/Command/_ssh @@ -5,7 +5,7 @@ _remote_files () { local expl remfiles remdispf remdispd args suf ret=1 if zstyle -T ":completion:${curcontext}:" remote-access; then - zparseopts -D -E -a args p: 1 2 4 6 + zparseopts -D -E -a args p: 1 2 4 6 F: remfiles=(${(M)${(f)"$(ssh $args -a -x ${words[CURRENT]%%:*} ls -d1F ${PREFIX%%[^./][^/]#}\* 2>/dev/null)"}%%[^/]#(|/)}) compset -P '*/' compset -S '/*' || suf='remote file' @@ -263,7 +263,7 @@ _ssh () { ;; file) if compset -P '*:'; then - _remote_files ${(kv)opt_args[(I)-[P1246]]/-P/-p} && ret=0 + _remote_files ${(kv)~opt_args[(I)-[FP1246]]/-P/-p} && ret=0 elif compset -P '*@'; then _wanted hosts expl host _ssh_hosts -S: && ret=0 else |
