about summary refs log tree commit diff
path: root/Completion/User/_other_accounts
blob: 572db38c7726cb9518d54d959964cc9674ec9471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#compdef talk ntalk ytalk finger

local expl nm="$compstate[nmatches]"
local accounts_users_hosts

local varname="$words[1]_accounts"

if [[ ${(P)+varname} -eq 1 ]]; then
  accounts_users_hosts=( ${(P)varname} )
else
  accounts_users_hosts=( $other_accounts )
fi

_user@host "$@"