mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 05:53:52 +01:00
12 lines
245 B
Plaintext
12 lines
245 B
Plaintext
#compdef write
|
|
|
|
local expl
|
|
|
|
if (( $+commands[users] )); then
|
|
_wanted users expl 'users logged on' \
|
|
compadd "$@" - $(_call users users) && return 0
|
|
else
|
|
# Other methods of finding out users logged on should be added here
|
|
return 1
|
|
fi
|