1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 09:21:19 +02:00

moved to Completion/Unix/Type/_users_on

This commit is contained in:
Sven Wischnowsky 2001-04-02 11:43:53 +00:00
parent 2d5ff8436f
commit de194a01dc

@ -1,11 +0,0 @@
#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