about summary refs log tree commit diff
path: root/Completion/User/_user_at_host
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-11-16 09:19:32 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-11-16 09:19:32 +0000
commita4054ed26295617a5c4914daa1b76f9d4781be12 (patch)
treea0e219a308a5d89024c841e6dd37401a09ddfa61 /Completion/User/_user_at_host
parentf6df6307ead281818ce6d469f55a3e807c877c3e (diff)
downloadzsh-a4054ed26295617a5c4914daa1b76f9d4781be12.tar.gz
zsh-a4054ed26295617a5c4914daa1b76f9d4781be12.tar.xz
zsh-a4054ed26295617a5c4914daa1b76f9d4781be12.zip
zsh-workers/8647
Diffstat (limited to 'Completion/User/_user_at_host')
-rw-r--r--Completion/User/_user_at_host4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/User/_user_at_host b/Completion/User/_user_at_host
index 1f93daacc..78e5a12aa 100644
--- a/Completion/User/_user_at_host
+++ b/Completion/User/_user_at_host
@@ -5,9 +5,9 @@ if [[ -prefix 1 *@ ]]; then
 
   compset -P 1 '*@'
 
-  _wanted -C user-at hosts expl "hostnames for $user" &&
+  _wanted -C user-at hosts expl "host for $user" &&
       _combination accounts_users_hosts users="$user" hosts "$expl[@]" "$@"
 else
-  _wanted users expl "usernames" &&
+  _wanted users expl "user" &&
       _combination accounts_users_hosts users -S@ -q "$expl[@]" "$@"
 fi