diff options
| author | Tanaka Akira <akr@users.sourceforge.net> | 2000-05-09 12:13:38 +0000 |
|---|---|---|
| committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-05-09 12:13:38 +0000 |
| commit | dff7eff11b037d508e3c4b683c35954a29b416b0 (patch) | |
| tree | 0d063dee642c6ad64bcf8c9cd6a9275a9f327b65 /Completion/User/_ssh | |
| parent | make nslookup function more like real nslookup (11277) (diff) | |
| download | zsh-dff7eff11b037d508e3c4b683c35954a29b416b0.tar zsh-dff7eff11b037d508e3c4b683c35954a29b416b0.tar.gz zsh-dff7eff11b037d508e3c4b683c35954a29b416b0.tar.bz2 zsh-dff7eff11b037d508e3c4b683c35954a29b416b0.tar.lz zsh-dff7eff11b037d508e3c4b683c35954a29b416b0.tar.xz zsh-dff7eff11b037d508e3c4b683c35954a29b416b0.tar.zst zsh-dff7eff11b037d508e3c4b683c35954a29b416b0.zip | |
11280: Completion/User/_make: suppress an error with closed stdin
on OpenBSD.
11278: Completion/User/_ssh: disable forwarding to use ssh.
Diffstat (limited to 'Completion/User/_ssh')
| -rw-r--r-- | Completion/User/_ssh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/User/_ssh b/Completion/User/_ssh index 986dec0c0..eeb0e08dc 100644 --- a/Completion/User/_ssh +++ b/Completion/User/_ssh @@ -3,7 +3,7 @@ _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. - compadd $(ssh ${words[CURRENT]%:*} echo ${words[CURRENT]#*:}\*) + compadd $(ssh -a -x ${words[CURRENT]%:*} echo ${words[CURRENT]#*:}\*) } _ssh () { |
