From b9195aa57d0e2f9512450b169a807ff23b31def8 Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Tue, 23 May 2000 18:06:32 +0000 Subject: minor completion fixes (11541) --- Completion/User/_user_at_host | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) (limited to 'Completion/User/_user_at_host') diff --git a/Completion/User/_user_at_host b/Completion/User/_user_at_host index 6006ef63b..b652242d3 100644 --- a/Completion/User/_user_at_host +++ b/Completion/User/_user_at_host @@ -1,15 +1,31 @@ #autoload -local expl nm="$compstate[nmatches]" +# Complete user/host combinations. Normally this looks for the style +# `users-hosts' for the tag `accounts'. A different tag may be given +# with `-t tag'. +# A `-' or `--' as the first argument is ignored. + +local suf tag=accounts + +if [[ "$1" = -t?* ]]; then + tag="${1[3,-1]}" + shift +elif [[ "$1" = -t ]]; then + tag="$2" + shift 2 +fi + +[[ "$1" = -(|-) ]] && shift if [[ -prefix 1 *@ ]]; then - local user=${PREFIX/@} + local user=${PREFIX%%@*} + compset -P 1 '*@' - _description expl "hostnames for $user" - _combination accounts_users_hosts users="$user" hosts "$expl[@]" "$@" + + _wanted -C user-at hosts expl "host for $user" \ + _combination -s '[:@]' "${tag}" users-hosts users="$user" hosts "$@" - else - _description expl "usernames" - _combination accounts_users_hosts users -S@ -q "$expl[@]" "$@" + compset -S '@*' || suf="@" + _wanted users expl "user" \ + _combination -s '[:@]' "${tag}" users-hosts users -S "$suf" -q "$@" - fi - -[[ nm -ne compstate[nmatches] ]] -- cgit 1.4.1