mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
15 lines
264 B
Plaintext
15 lines
264 B
Plaintext
|
#compdef 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
|