summaryrefslogtreecommitdiffstats
path: root/Completion/User/_ssh
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-12-01 15:29:41 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-12-01 15:29:41 +0000
commitf844c87a4d676bcc8ad7ac24b5132d7aa5ccfeca (patch)
treec2a3b06a34243abe3826eead259bb08900f011f1 /Completion/User/_ssh
parentzsh-workers/8839 (diff)
downloadzsh-f844c87a4d676bcc8ad7ac24b5132d7aa5ccfeca.tar
zsh-f844c87a4d676bcc8ad7ac24b5132d7aa5ccfeca.tar.gz
zsh-f844c87a4d676bcc8ad7ac24b5132d7aa5ccfeca.tar.bz2
zsh-f844c87a4d676bcc8ad7ac24b5132d7aa5ccfeca.tar.lz
zsh-f844c87a4d676bcc8ad7ac24b5132d7aa5ccfeca.tar.xz
zsh-f844c87a4d676bcc8ad7ac24b5132d7aa5ccfeca.tar.zst
zsh-f844c87a4d676bcc8ad7ac24b5132d7aa5ccfeca.zip
zsh-workers/8840
Diffstat (limited to 'Completion/User/_ssh')
-rw-r--r--Completion/User/_ssh8
1 files changed, 4 insertions, 4 deletions
diff --git a/Completion/User/_ssh b/Completion/User/_ssh
index 4318caf96..9b07a62cf 100644
--- a/Completion/User/_ssh
+++ b/Completion/User/_ssh
@@ -57,7 +57,7 @@ _ssh () {
ret=0
;;
*(#i)globalknownhostsfile*)
- _description expl 'global file with known hosts'
+ _description files expl 'global file with known hosts'
_files "$expl[@]" && ret=0
;;
*(#i)hostname*)
@@ -65,7 +65,7 @@ _ssh () {
_ssh_hosts "$expl[@]" && ret=0
;;
*(#i)identityfile*)
- _description expl 'SSH identity file'
+ _description files expl 'SSH identity file'
_files "$expl[@]" && ret=0
;;
*(#i)(local|remote)forward*)
@@ -82,7 +82,7 @@ _ssh () {
compadd "$expl[@]" yes no ask
;;
*(#i)userknownhostsfile*)
- _description expl 'user file with known hosts'
+ _description files expl 'user file with known hosts'
_files "$expl[@]" && ret=0
;;
*(#i)user*)
@@ -90,7 +90,7 @@ _ssh () {
_ssh_users "$expl[@]" && ret=0
;;
*(#i)xauthlocation*)
- _description expl 'xauth program'
+ _description files expl 'xauth program'
_files "$expl[@]" -g '*(*)' && ret=0
;;
esac